Hi Laurahn,
Which time-out are you referring to? Do you mean that a page failed to
finish executing (which has a default 90 seconds for 1.x and 110 seconds
for 2.0 and can be controlled by <httpRuntime> in web.config or
HttpServerUtility.ScriptTimeout property). Or do you mean the timeout of
the session.
For the request timeout, you can define a custom error page for error code
500:
<customErrors mode="On">
<error statusCode="500" redirect="ErrorPage500.aspx" />
</customErrors>
For the session timeout, please see following if following article useful:
#Build an ASP.NET Session Timeout Redirect Control
http://www.eggheadcafe.com/articles/20051228.asp
Regards,
Walter Wang (
[email protected], remove 'online.')
Microsoft Online Community Support
==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.