0
我的主頁上有一個updatepanel。在contentplace持有人中,我有我的更新進度控制。當用戶點擊按鈕時,我將一些數據加載到gridview中。這在FireFox中是完美的。用戶點擊按鈕,我的updateprogress中的加載圖像激發並加載gridview。當我在IE 6或7或Chrome中測試這個。它做了一個完整的回發,updateprogress從不顯示。所以updatepanel似乎並沒有在這兩個瀏覽器中工作。代碼如下。再次...它在FireFox中完美。UpdatePanel無法在IE或Chrome中工作
***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>
這個問題的第一個答案解決了我: https://stackoverflow.com/questions/2457551/gridview-paging-controls-not-working-in-google-chrome-or-safari – jcsilva87 2017-09-14 19:43:38