| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <%@ Page Language="C#" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <script runat="server">
- protected void Button_Click(object sender, EventArgs e)
- {
- System.Threading.Thread.Sleep(3000);
- }
- </script>
- <html xmlns="http://www.w3.org/1999/xhtml" >
- <head runat="server">
- <title>UpdateProgress Example</title>
- <style type="text/css">
- #UpdatePanel1, #UpdatePanel2 {
- width:200px; height:200px; position: relative;
- float: left; margin-left: 10px; margin-top: 10px;
- border-right: gray 1px solid; border-top: gray 1px solid;
- border-left: gray 1px solid; border-bottom: gray 1px solid;
- }
- #UpdateProgress1, #UpdateProgress2 {
- width: 200px; background-color: #FFC080;
- position: absolute; bottom: 0px; left: 0px;
- }
- </style>
- </head>
- <body>
- <form id="form1" runat="server">
- <div>
- <asp:ScriptManager ID="ScriptManager1" runat="server" />
- <asp:UpdatePanel ID="UpdatePanel1" UpdateMode="Conditional" runat="server">
- <ContentTemplate>
- <%=DateTime.Now.ToString() %> <br />
- <asp:Button ID="Button1" runat="server" Text="Refresh Panel" OnClick="Button_Click" />
- <asp:UpdateProgress ID="UpdateProgress1" AssociatedUpdatePanelID="UpdatePanel1" runat="server">
- <ProgressTemplate>
- UpdatePanel1 updating...
- </ProgressTemplate>
- </asp:UpdateProgress>
- </ContentTemplate>
- </asp:UpdatePanel>
- <asp:UpdatePanel ID="UpdatePanel2" UpdateMode="Conditional" runat="server">
- <ContentTemplate>
- <%=DateTime.Now.ToString() %> <br />
- <asp:Button ID="Button2" runat="server" Text="Refresh Panel" OnClick="Button_Click"/>
- <asp:UpdateProgress ID="UpdateProgress2" AssociatedUpdatePanelID="UpdatePanel2" runat="server">
- <ProgressTemplate>
- UpdatePanel2 updating...
- </ProgressTemplate>
- </asp:UpdateProgress>
- </ContentTemplate>
- </asp:UpdatePanel>
- </div>
- </form>
- </body>
- </html>
|