Is there a way to manually increase / decrease the timeout of a specific aspx page?
|
1
|
|||||||
|
|
|
In the web.config:
|
||
|
|
|
|
The one thing to remember with this is that the timeout feature here will only invalidate the Session Timeout, but the user will still remain on whatever page they are on. This may cause issues with the flow of the application. As a rememdy, I keep the following in my Web.config file:
In addition, my master page has the following code in my code behind file:
and you should be all set on both ends. |
||||
|
|
|
http://stackoverflow.com/questions/184782/aspnet-session-timeout-testing Do a search, there is a lot of posts about this subject. |
||
|
|
|
|
If you are talking about the amount of time it takes before the page returns a timeout, then mnour's example - you may want to look at the machine.config file as well. If you talking about a session timing out, then you will need to use a JS timer that posts back when it reaches 0. |
||
|
|
