Posted on: 2/10/2015 6:13:35 PM | Views : 538

 I have an application where some of the pages are in asp and some are in asp.net. I have handled the session timeout in asp pages, whereas i need to implement the session timeout in aspx pages as well. 
I have an index.asp page where i set the session when the user login like this,
Session("uname") Now when the user click the menu it gest transfered to the aspx page with the login details in the url. something like this,
http://wages/?CompanyID=1&LoginName=Admin
I have followed this method to transfer the session from asp page to asp.net page. here is my code on aspx page,
protected void Page_Load(object sender, EventArgs e) { Common oCommon ...

Go to the complete details ...