Is it possible to increase the timeout for a single ASP.net page. I know it is possible at the server level, but is it possible at thepage level?
I need this for a single report page that takes 2-3 minutes to load
any ideas?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I think what you’re looking for is
ScriptTimeout. You can set this in-page like this:The timeout value is in seconds.
Also, be aware of the fact that if you are running in debug mode, this gets ignored and the timeout is set to the maximum; I don’t think that’s an issue for you anyway though, as you’re increasing the timeout, not decreasing it.