| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <%@ 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 Button1_Click(object sender, EventArgs e)
- {
- Label1.Text = "Refreshed at " +
- DateTime.Now.ToString();
- }
- </script>
- <html xmlns="http://www.w3.org/1999/xhtml" >
- <head runat="server">
- <title>Untitled Page</title>
- <style type="text/css">
- #UpdatePanel1 {
- width:300px; height:100px;
- }
- </style>
- </head>
- <body>
- <form id="form1" runat="server">
- <div style="padding-top: 10px">
- <asp:ScriptManager ID="ScriptManager1" runat="server">
- </asp:ScriptManager>
- <asp:UpdatePanel ID="UpdatePanel1" runat="server">
- <ContentTemplate>
- <fieldset>
- <legend>UpdatePanel</legend>
- <asp:Label ID="Label1" runat="server" Text="Panel created."></asp:Label><br />
- <asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Button" />
- </fieldset>
- </ContentTemplate>
- </asp:UpdatePanel>
- <br />
- </div>
-
- </div>
- </form>
- </body>
- </html>
|