Lee Richardson
(Admin)
Jun 13 2006 4:38 AM
|
Yashmi,
It's hard to know without seeing the code your are using. Generally this should look like either:
<sessionState mode="InProc" ... timeout="20" />
Or in the web.config:
protected void Session_Start(Object sender, EventArgs e) {
Session.Timeout = 20;
}
If you've tried those there may be something such as a virus scanner causing the application to restart. See the following Microsoft Knowledge Base article for details: http://support.microsoft.com/default.aspx?scid=kb;en-us;324772. |