TheCandyman
Technical User
I have an asp page which works correctly. I moved to a new IIS box, still same setup and version, which is faster. I set the session timeout to 10 minutes, and the ASP script timpout to 180 sec in IIS. I even added this asp to try and help:
It seems to time out around 20 seconds. Where else can i check/change this? I put a response.flush in my code and its looping, but just craps out after 15-30 seconds.
Code:
<% Server.ScriptTimeout=180 %>
...
...
Set cnnGetRows = Server.CreateObject("ADODB.Connection")
cnnGetRows.CommandTimeout=120
cnnGetRows.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & Server.MapPath ("/reg/Regdb/MSDB.mdb")
Set rstGetRows = cnnGetRows.Execute("[i]SQL statement[/i];")
arrDBData = rstGetRows.GetRows()
It seems to time out around 20 seconds. Where else can i check/change this? I put a response.flush in my code and its looping, but just craps out after 15-30 seconds.