2

我的 UpdateProgress 在 UpdatePanel 之外,我尝试了以下方法

  1. 添加了 JavaScript,在母版页中添加了“AsyncPostBackTimeout=3600”
  2. Page-Load在事件中添加了以下代码

    ScriptManager _scriptMan = ScriptManager.GetCurrent(this.Page);
    _scriptMan.AsyncPostBackTimeout = 3600;

  3. 在 web.config 文件中添加了以下更改:

    <system.web>
    <httpRuntime maxRequestLength="2097151" requestLengthDiskThreshold="1000" executionTimeout="3600" />
    </system.web>

在此更改后,UpdateProgress 微调器也会出现 90 秒。

4

1 回答 1

3

在我在 ScriptManager 标记本身上设置 AsyncPostBackTimeout 之前,我遇到了同样的问题。

<asp:ScriptManager ID="ScriptManager1" runat="server"
 AsyncPostBackTimeout="600" />
于 2012-10-19T21:45:16.833 回答