Include in C#
I am using C#.NET, Visual Web Developer and SQL Server 2000.
I would like to set variables per person/session.
I have declared session["User_login"] in my 1st file which is usersecurity.aspx. Using this I have also captured some values from database and stored into session for ex. session["EmpID"], Session["UserType"].
Now I want to use all these results in 2nd page which is orderlist.aspx. How to use it?
Do I have to include this file into my 2nd page? if yes, How to include file and use its result in C#?
|