The ScriptTimeout property specifies the maximum amount of seconds a script can run before it is terminated.
The timeout will not take effect while a server component is processing.
Sets or returns an Integer value.
The following example causes scripts to time out if the server takes longer than 100 seconds to process them:
<% Server.ScriptTimeout = 100 %>
The following example retrieves the current value of the ScriptTimeout property
and stores it in the variable TimeOut
.
<% TimeOut = Server.ScriptTimeout %>