Quantcast
Channel: ASP.Net – Bala Krishna
Viewing all articles
Browse latest Browse all 10

Set / Retrieve Script Timeout in ASP

$
0
0

The ScriptTimeout property in ASP specifies the amount of run-time in seconds for a script before it terminates. The default value is 90 seconds set by IIS.

Set the script timeout:

<%
Server.ScriptTimeout=200
%>

Retrieve the current value of the ScriptTimeout property:

<%
response.write(Server.ScriptTimeout)
%>


Viewing all articles
Browse latest Browse all 10

Trending Articles