Classic ASP
How do I set the script timeout length for my asp pages?
The default Script Timeout setting for ASP pages is 90 seconds. To change this
for a particular ASP page, type the following code at the top of the page:
<%
Server.ScriptTimeout = 180
%>
where 180 = the number of seconds.