I\'m making a request from an UpdatePanel that takes more then 90 seconds. I\'m getting this timeout error:
UpdatePanel
Microsoft JScript runtime err
Please follow the steps below:
Step 1: In web.config, set httpRuntime maxRequestLength="1024000" executionTimeout="999999"
httpRuntime maxRequestLength="1024000" executionTimeout="999999"
Step 2: Add the following setting to your web page's ScriptManager: AsyncPostBackTimeout ="360000"
AsyncPostBackTimeout ="360000"
This will solve your problem.