Session TimeOut Quickly....
-
Hi All, In our web Application,Session is TimeOut Very Quickly.Is there a way to increase the TimeOut period? Is there a any solution for that? Please help me to solve this. Thanks in advance...
-
Hi All, In our web Application,Session is TimeOut Very Quickly.Is there a way to increase the TimeOut period? Is there a any solution for that? Please help me to solve this. Thanks in advance...
-
Hi All, In our web Application,Session is TimeOut Very Quickly.Is there a way to increase the TimeOut period? Is there a any solution for that? Please help me to solve this. Thanks in advance...
Yes. This is generally setting of web.config file
<sessionState mode="InProc" timeout="5"/>
Here time out is for 5 min you can chage it as per your requirment. you can also change it on SessionStart Event ofGlobal.asax
file asSession.TimeOut=5;
cheers, Abhijit