UpdatePanelDynamicallyUpdatedCS3.aspx 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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:MultiView ID="MultiView1"
  16. ActiveViewIndex="0"
  17. runat="Server">
  18. <asp:View ID="DefaultView"
  19. runat="Server">
  20. <asp:Panel ID="DefaultViewPanel"
  21. CssClass="PanelStyle"
  22. runat="Server" >
  23. <asp:Label ID="DefaultLabel1"
  24. Text="The Default View"
  25. AssociatedControlID="DefaultView"
  26. CssClass="LabelHeaderStyle"
  27. runat="Server">
  28. </asp:Label>
  29. <asp:BulletedList ID="DefaultBulletedList1"
  30. BulletStyle="Disc"
  31. DisplayMode="Hyperlink"
  32. Target="_blank"
  33. runat="Server">
  34. <asp:ListItem Value="http://www.microsoft.com">
  35. Today's Weather</asp:ListItem>
  36. <asp:ListItem Value="http://www.microsoft.com">
  37. Today's Stock Quotes</asp:ListItem>
  38. <asp:ListItem Value="http://www.microsoft.com">
  39. Today's News Headlines</asp:ListItem>
  40. <asp:ListItem Value="http://www.microsoft.com">
  41. Today's Featured Shopping</asp:ListItem>
  42. </asp:BulletedList>
  43. </asp:Panel>
  44. </asp:View>
  45. <asp:View ID="NewsView"
  46. runat="Server">
  47. <asp:Panel ID="NewsViewPanel"
  48. CssClass="PanelStyle"
  49. runat="Server">
  50. <asp:Label ID="NewsLabel1"
  51. Text="The News View"
  52. AssociatedControlID="NewsView"
  53. CssClass="LabelHeaderStyle"
  54. runat="Server">
  55. </asp:Label>
  56. <asp:BulletedList ID="NewsBulletedlist1"
  57. BulletStyle="Disc"
  58. DisplayMode="Hyperlink"
  59. Target="_blank"
  60. runat="Server">
  61. <asp:ListItem Value="http://www.microsoft.com">
  62. Today's International Headlines</asp:ListItem>
  63. <asp:ListItem Value="http://www.microsoft.com">
  64. Today's National Headlines</asp:ListItem>
  65. <asp:ListItem Value="http://www.microsoft.com">
  66. Today's Local News</asp:ListItem>
  67. </asp:BulletedList>
  68. </asp:Panel>
  69. </asp:View>
  70. </asp:MultiView>
  71. </div>
  72. </form>
  73. </body>
  74. </html>