| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <%@ 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">
- </script>
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head runat="server">
- <title>UpdatePanel Example</title>
- <style type="text/css">
- body {
- font-family: Lucida Sans Unicode;
- font-size: 10pt;
- }
- button {
- font-family: tahoma;
- font-size: 8pt;
- }
- </style>
- </head>
- <body>
- <form id="form1" runat="server">
- <div>
- <asp:ScriptManager ID="ScriptManager"
- runat="server" />
- <asp:UpdatePanel ID="UpdatePanel1"
- UpdateMode="Conditional"
- runat="server">
- <ContentTemplate>
- <fieldset>
- <legend>UpdatePanel content</legend>
- <!-- Other content in the panel. -->
- <%=DateTime.Now.ToString() %>
- <br />
- <asp:Button ID="Button1"
- Text="Refresh Panel"
- runat="server" />
- </fieldset>
- </ContentTemplate>
- </asp:UpdatePanel>
- </div>
- </form>
- </body>
- </html>
|