ASP.NET UpdatePanel Time Out

后端 未结 7 740
天命终不由人
天命终不由人 2020-12-08 02:21

I\'m making a request from an UpdatePanel that takes more then 90 seconds. I\'m getting this timeout error:

Microsoft JScript runtime err

7条回答
  •  孤城傲影
    2020-12-08 02:44

    Please follow the steps below:

    Step 1: In web.config, set httpRuntime maxRequestLength="1024000" executionTimeout="999999"

    Step 2: Add the following setting to your web page's ScriptManager: AsyncPostBackTimeout ="360000"

    This will solve your problem.

提交回复
热议问题