Playing around with asp.net 2.0 and asp:menu for the first time..
what's the attribute/code so that each item in my menu has a *SEPERATE*
border around it? Seems I can only make the border around the entire
menu. I'd like the menu to look like a datagrid. Here's my code.
<form id="form1" runat="server">
<div>
<asp:Menu ID="Menu1" runat="server" BackColor="#FFC080"
BorderColor="Olive" BorderStyle="Ridge"
BorderWidth="1px" ForeColor="Navy">
<Items>
<asp:MenuItem NavigateUrl="default.aspx?s=fences"
Text="Fence Styles" Value="Fences">
</asp:MenuItem>
<asp:MenuItem NavigateUrl="default.aspx?s=gates"
Text="Gate Styles" Value="Gates"></asp:MenuItem>
</Items>
</asp:Menu>
</div>
</form>