Quote:
|
Originally Posted by thele
What is the maximum value that I can set Server.ScriptTimeout on my asp page?
Thanks.
~Le
|
Code:
<%
OPTION EXPLICIT
Response.Buffer = False
Server.ScriptTimeout = 2147483647 '32 bit signed integer
'35791394.116666666666666666666667 minutes
'596523.23527777777777777777777778 hours
'24855.134803240740740740740740741 days
'68.049650385327147818592034882247 years
Response.Write CStr(Server.ScriptTimeout)
%>
The answer is 2147483647.