Extending page time out length.

  • Thread starter Thread starter Ken Dopierala Jr.
  • Start date Start date
K

Ken Dopierala Jr.

Hi,
We have a report that takes a long time to generate. The web page keeps
coming back with a time-out error because it is taking too long to generate
the page. How can I increase the timeout time limit? Now it seems to
timeout around 2 minutes and I would like it to wait 5 before erroring out.
Thanks! Ken.
 
You should be able to set the timeout in your code when the page loads:

Server.ScriptTimeout = 300
 
Back
Top