UpdatePanel无法在IE或Chrome中运行

时间:2010-06-02 13:07:05

标签: asp.net ajax asp.net-ajax updatepanel

我的主页上有一个更新面板。在contentplace holder中,我有更新进度控件。当用户点击按钮时,我将一些数据加载到gridview中。这在FireFox中完美运行。用户单击该按钮,我的updateprogress中的加载图像将触发并加载gridview。当我在IE 6或7或Chrome中测试时。它执行完整的回发并且从不显示updateprogress。所以updatepanel似乎并没有在这两个浏览器中工作。代码如下。再次......它在FireFox中完美无缺。

***From Masterpage ***

<asp:UpdatePanel ID="UpdatePanel" runat="server">
 <contenttemplate>
  <asp:contentplaceholder id="holder" runat="server" />
  </contenttemplate>
</asp:UpdatePanel>

**From aspx page ****

 <asp:UpdateProgress ID="UpdateProgress1" runat="server">
    <ProgressTemplate>
       <img src="ajax-loader.gif" />
    </ProgressTemplate>
 </asp:UpdateProgress>

1 个答案:

答案 0 :(得分:0)

我们有一些命名空间和dll问题。