Adding a Menu in ASP.net

I want to add a menu to the left of the body in an ASP.net site.

I have added to site.css to give the menu framework.

I an just having a little trouble with the text placement because “MenuContent” is not a valid ID:

<asp:Content ID=“HeaderContent” runat=“server” ContentPlaceHolderID=“HeadContent”>
</asp:Content>
<asp:Content ID=“MenuContent” runat=“server” ContentPlaceHolderID=“MenuContent”>
<div id = “div.menu”><ul>
<li>Help Sites
<ul>
<li><a href=“http://www.google.com”>Google</a><li>
<li><a href=“http://en.wikipedia.org/wiki/Wiki”>Wiki</a></li>
</ul>
</li>
</ul></div>
</asp:Content>
<asp:Content ID=“BodyContent” runat=“server” ContentPlaceHolderID=“MainContent”>

</asp:Content>

I found the Menu in Site.Master and am manipulating it thru site.css.

I have a simple question. How do you “return” after each MenuItem? I tried <br /> but that did not work.

<asp:MenuItem NavigateUrl=“~/Default.aspx” Text=“Home”></asp:MenuItem><br />
<asp:MenuItem NavigateUrl=“~/About.aspx” Text=“About”></asp:MenuItem>