Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IIS 6.1: ASP Script Timeout Parameter

I'm using IIS 6.1 to configure a web server to upload files to. I get the following error when trying to upload files over 25 MB:

The maximum amount of time for a script to execute was exceeded. You can change this limit by changing the value in the IIS Administration tools.

I've tried following the instructions here: http://support.microsoft.com/kb/268364

But there is no properties menu in the version I am using.

Thanks.

like image 617
Parth Avatar asked Sep 16 '25 09:09

Parth


2 Answers

Why involve the entire server's script time out property for one single page?

Just goto the page that times out and add this at the top'

Server.ScriptTimeout=200 'now you will get 200 seconds for the script to its processing

and your IIS is not touched.

that's the way the go.

like image 86
Average Joe Avatar answered Sep 19 '25 07:09

Average Joe


http://share-useful-links-here.blogspot.com/2011/02/asp-script-time-out.html

Found the answer here.

Click the ASP Tab --> Expand "Limit Properties" --> Set "Script Time-out" parameter to what you want

like image 40
Parth Avatar answered Sep 19 '25 07:09

Parth