Team:Wash U/Temp

From 2009.igem.org

(Difference between revisions)
(Removing all content from page)
Line 1: Line 1:
 +
<html  >
 +
  <!-- For the hover styles of the Menu control to  -->
 +
  <!-- work correctly, you must include this head  -->
 +
  <!-- element.                                    -->
 +
  <head runat="server">
 +
    <title>Menu DynamicHoverStyle Example</title>
 +
</head>
 +
 +
  <body>
 +
    <form id="form1" runat="server">
 +
 +
      <h3>Menu DynamicHoverStyle Example</h3>
 +
 +
      <asp:menu id="NavigationMenu"
 +
        staticdisplaylevels="2"
 +
        staticsubmenuindent="10"
 +
        orientation="Vertical"
 +
        target="_blank" 
 +
        runat="server">
 +
 +
        <dynamichoverstyle backcolor="LightSkyBlue"
 +
          forecolor="Black"/>
 +
 +
        <items>
 +
          <asp:menuitem navigateurl="Home.aspx"
 +
            text="Home"
 +
            tooltip="Home">
 +
            <asp:menuitem navigateurl="Music.aspx"
 +
              text="Music"
 +
              tooltip="Music">
 +
              <asp:menuitem navigateurl="Classical.aspx"
 +
                text="Classical"
 +
                tooltip="Classical"/>
 +
              <asp:menuitem navigateurl="Rock.aspx"
 +
                text="Rock"
 +
                tooltip="Rock"/>
 +
              <asp:menuitem navigateurl="Jazz.aspx"
 +
                text="Jazz"
 +
                tooltip="Jazz"/>
 +
            </asp:menuitem>
 +
            <asp:menuitem navigateurl="Movies.aspx"
 +
              text="Movies"
 +
              tooltip="Movies">
 +
              <asp:menuitem navigateurl="Action.aspx"
 +
                text="Action"
 +
                tooltip="Action"/>
 +
              <asp:menuitem navigateurl="Drama.aspx"
 +
                text="Drama"
 +
                tooltip="Drama"/>
 +
              <asp:menuitem navigateurl="Musical.aspx"
 +
                text="Musical"
 +
                tooltip="Musical"/>
 +
            </asp:menuitem>
 +
          </asp:menuitem>
 +
        </items>
 +
 +
      </asp:menu>
 +
 +
    </form>
 +
  </body>
 +
</html>

Revision as of 20:30, 14 June 2009

Menu DynamicHoverStyle Example

Menu DynamicHoverStyle Example