If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Data Access, Manipulation & Batch Languages > ASP > What is the max for Server.ScriptTimeout?

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 04-12-04, 09:36
thele thele is offline
Registered User
 
Join Date: Jun 2003
Location: Ohio
Posts: 108
What is the max for Server.ScriptTimeout?

What is the maximum value that I can set Server.ScriptTimeout on my asp page?

Thanks.

~Le
Reply With Quote
  #2 (permalink)  
Old 12-27-05, 19:07
richteel richteel is offline
Registered User
 
Join Date: Dec 2005
Posts: 2
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.
Reply With Quote
  #3 (permalink)  
Old 12-27-05, 19:14
richteel richteel is offline
Registered User
 
Join Date: Dec 2005
Posts: 2
Here is a link to a better description.
http://www.aspfaq.com/show.asp?id=2066
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On