更新UpdatePanel

时间:2016-05-25 09:35:17

标签: updatepanel updateprogress

在我的代码中,我在updatepanel中有一个表,其中包含一个用于更新此表的按钮。 我提出了一个显示“正常工作”的updateprogress。

当我单击按钮时,表格将从后面的代码中填入值,但是当脚本结束时,表格仍然是空的。

如果我删除updateprogress,表格将会更新..

示例代码:

<asp:UpdatePanel runat="server" ID="uppanel" UpdateMode="Conditional">
<ContentTemplate>
<asp:Table><asp:TableRow><asp:TableCell runat="server" id="value"></asp:TableCell></asp:TableRow></asp:Table>
<asp:Button onClick="update_click" runat="server">
</ContentTemplate>
</asp:UpdatePanel>
    <asp:UpdateProgress  id="updateProgress" AssociatedUpdatePanelID="uppanel" runat="server">
<ProgressTemplate>
    <div style="position: fixed; text-align: center; height: 100%; width: 100%; top: 0; right: 0; left: 0; z-index: 9999999; background-color: #000000; opacity: 0.7;">
        <span style="border-width: 0px; position: fixed; padding: 50px; background-color: #FFFFFF; font-size: 36px; left: 40%; top: 40%;">Loading ...</span>
    </div>
</ProgressTemplate>

0 个答案:

没有答案