Page expiration problem

liunx

Guest
Hi

all, i have a web page, it may run for more than 1hr, if it reached more than 1 hr the page is displaying like "page cannot found" but still the process is going on in the back ground.

i have tried to set script execution time out in the following ways, but still no use

1.Page.Server.ScriptTimeout = 8400 in page load event
2. setting in the web.config under this tag
<httpRuntime maxRequestLength="4000" executionTimeout="7200" />

plz help in this issue, thanks in advance if any body can help in this issue.Are you using any session variables? The asp.net session state is not reliable, you cannot depend on the session being there for long lengths of time even if it is set to last for a long idle period. I know that the default is 20minutes, rarely it will even last that long.Thanks for your reply. I will chk.
 
Back
Top