You may have experienced ASP script time out error message for your ASP web pages. You can increase it using below procedures:
Step 1:
By default ASP script timeout value in IIS is 90 seconds. You can increase this value using below procedure.
1.1 Login to your server.
1.2 Open IIS manager.
1.3 Go to websites.
1.4 Right click on your web site directory and select properties.
1.5 Click on “Home Directory” tab.
1.6 Click on “Configuration” button from Application settings.
1.7 Click on “Options” tab.
1.8 Provide script time out value (number of seconds) in ASP script timeout option. (Default value of
1.9 Click on OK button to save the changes.
Step 2:
You can also directly set ASP script timeout value using script.timeout property of ASP engine.
For example: script.timeout = 120 will set 120 seconds script timeout value to your ASP script.
Thanks,
Step 1:
By default ASP script timeout value in IIS is 90 seconds. You can increase this value using below procedure.
1.1 Login to your server.
1.2 Open IIS manager.
1.3 Go to websites.
1.4 Right click on your web site directory and select properties.
1.5 Click on “Home Directory” tab.
1.6 Click on “Configuration” button from Application settings.
1.7 Click on “Options” tab.
1.8 Provide script time out value (number of seconds) in ASP script timeout option. (Default value of
1.9 Click on OK button to save the changes.
Step 2:
You can also directly set ASP script timeout value using script.timeout property of ASP engine.
For example: script.timeout = 120 will set 120 seconds script timeout value to your ASP script.
Thanks,