Mega Code Archive

 
Categories / ASP.Net / Components
 

Right expand menu (C#)

<%@ Page Language="C#" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head id="Head1" runat="server">     <title>Menu HyperLink</title> </head> <body>     <form id="form1" runat="server">     <div>          <asp:Menu         id="Menu1"         Runat="server">         <Items>             <asp:MenuItem                  Text="Products"                 NavigateUrl="http://www.rntsoft.com" />             <asp:MenuItem                 Text="Services"                 NavigateUrl="http://www.rntsoft.com">                 <asp:MenuItem                     Text="Training"                     NavigateUrl="http://www.rntsoft.com" />                 <asp:MenuItem                     Text="Consulting"                     NavigateUrl="http://www.rntsoft.com" />                 </asp:MenuItem>                 </Items>     </asp:Menu>              </div>     </form> </body> </html>