sasha85
09-28-2007, 01:20 PM
that's how we set timeout..
The timeout property determines how long the component should wait for a response from the HTTP server. The default timeout is 90 seconds.
<% Server.ScriptTimeout = 360 %>
You can increase timeout time from the ASP script itself by using Server.ScriptTimeOut property:
Server.ScriptTimeout = NumSeconds
For example, if you want 100 seconds: Server.ScriptTimeout = 100
my server after the 90 seconds i got the page cannot be displayed...
is there a way to limit the timeout and when the time will come to the end it will take the user to a specific file and not show to him that the page cannot be displayed?
how can i do some error trapping to prevent the users from seeing the "canot display page" and to redirect him to other page?
The timeout property determines how long the component should wait for a response from the HTTP server. The default timeout is 90 seconds.
<% Server.ScriptTimeout = 360 %>
You can increase timeout time from the ASP script itself by using Server.ScriptTimeOut property:
Server.ScriptTimeout = NumSeconds
For example, if you want 100 seconds: Server.ScriptTimeout = 100
my server after the 90 seconds i got the page cannot be displayed...
is there a way to limit the timeout and when the time will come to the end it will take the user to a specific file and not show to him that the page cannot be displayed?
how can i do some error trapping to prevent the users from seeing the "canot display page" and to redirect him to other page?