Thursday, October 16, 2008

How to increase ASP timeout?

How to increase ASP timeout?
A: 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 %>

No comments: