Click here to Skip to main content
15,894,343 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have one ASP.Net Web page in the server. Its working fine in local system. But in Server the web page opened very slow. And also i used Sessions in the page. The sessions are expired in 40 sec and redirects to Login page again. How to manage sessions in IIS for ASP.net page and also the Performance of the page
Posted
Comments
Richard C Bishop 1-May-13 14:17pm    
The session timeout can be set in the web config file.

1 solution

I am assuming you are referring to a asp.net webforms application. Regarding the first part of your question use traces to find why/where the page is slowing down. These links might be helpful:

http://msdn.microsoft.com/en-us/library/bb386420(v=vs.100).aspx[^]

http://www.webpronews.com/how-to-use-the-trace-feature-in-aspnet-2006-09[^]

For the second part of your question, check the sessionTimeout specified in your web.config file in the server.

http://msdn.microsoft.com/en-us/library/h6bb9cz9(v=vs.71).aspx[^]

Hope this helps!
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900