ASP Server.ScriptTimeout() - Application Object Gets and sets the request time-out value in seconds
ShotDev Focus:
- The time-out value setting for requests
Example
asp_server_scripttimeout.asp
<% Option Explicit %> <html> <head> <title>ShotDev.Com Tutorial</title> </head> <body> <% Server.ScriptTimeOut = 1200 '*** ASP Code ***' '*** ASP Code ***' '*** ASP Code ***' '*** ASP Code ***' Response.write ("The Application Server.ScriptTimeOut="&Server.ScriptTimeOut) %> </body> </html>
Create a asp file and save to path root-path/myasp/
Run
http://localhost/myasp/asp_server_scripttimeout.asp
Screenshot
.
.
.
Download this script.