Hi All!!!


I m facing a small problem.I have made a aspx page which is to be linked with existing ASP application.

I need to access the Session variable in my new ASPX page from the existing ASP page .

i wrote the following Code

Code:
txtUser.Text = Session["CurLgn"].ToString();
Session["CurLogin"] is the name of session variable in the existing ASP page.


Is there some trick to include this session variable in ASPX page.


Plz suggest