UpdatePanelDynamicallyUpdatedCS2.aspx 920 B

1234567891011121314151617181920212223242526272829303132
  1. <!-- This is a helper file to grab snippets from -->
  2. <!-- This is not meant to be run -->
  3. <%@ Page Language="C#" %>
  4. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  5. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  6. <script runat="server">
  7. </script>
  8. <html xmlns="http://www.w3.org/1999/xhtml">
  9. <head id="Head1" runat="server">
  10. <title>UpdatePanel Update Method Example</title>
  11. </head>
  12. <body>
  13. <form id="form1" runat="server">
  14. <div>
  15. <asp:ScriptManager ID="TheScriptManager"
  16. runat="server" />
  17. <asp:UpdatePanel ID="UpdatePanel1"
  18. UpdateMode="Conditional"
  19. runat="server">
  20. <ContentTemplate>
  21. </ContentTemplate>
  22. </asp:UpdatePanel>
  23. <br />
  24. </div>
  25. </form>
  26. </body>
  27. </html>