Asked by:
asp seo menu

Question
-
User-492280791 posted
Hello,
I want to display the seo menu like this:
<div id="panelMenu">
<ul>
<li class="done"><img src="img/een_done.jpg" alt="shirts, fabric" /><a href="Men_Fabric_DEF.html">Fabric</a></li>
<li class="current"><img src="img/twee_current.jpg" alt="shirts, fabric" /><a href="Men_Design_collar_DEF.html">Design</a></li>
<li class="todo"><img src="img/todo3.jpg" alt="shirts, fabric" /><a href="Men_Design_Initials.html">MONOGRAM</a></li>
<li class="todo"><img src="img/todo4.jpg" alt="shirts, fabric" /><a href="Men_sizing.html">Sizing</a></li>
<li class="last_todo"><img src="img/todo5.jpg" alt="shirts, fabric" /><a href="Men_review.html">Review</a></li>
</ul>
<div class="clear">.</div>Is this possible? It seems I cannot assign an ID...
Kind Regards
Tuesday, June 9, 2009 8:53 AM
All replies
-
User-925286913 posted
Is this possible? It seems I cannot assign an ID...
Where do you want to assign ID?
You can assign it in any element and set runat=server to access it in code-behind.
Tuesday, June 9, 2009 9:09 AM -
User-492280791 posted
@chintanpshah: Thanks for your reply! I want to assign it to asp:MenuItem. I need this because I want to show a number of step as image.
<asp:Menu ID="EntertainmentMenu" runat="server" Orientation="Horizontal"
OnMenuItemClick="OnClick" CssSelectorClass="SimpleEntertainmentMenu">
<Items>
<asp:MenuItem Text="FABRIC"></asp:MenuItem>
<asp:MenuItem Text="DESIGN"> </asp:MenuItem>
<asp:MenuItem Text="MONO"> </asp:MenuItem>
<asp:MenuItem Text="SIZING"> </asp:MenuItem>
<asp:MenuItem Text="REVIEW"> </asp:MenuItem>
</Items>
</asp:Menu>Hope you can help me out.
Tuesday, June 9, 2009 9:22 AM -
User-492280791 posted
To be sure you understand me.
I want to be my menu like this:
image of number 1 Fabric - image of number 2 DESIGN - image of number....
THanks
Wednesday, June 10, 2009 9:18 AM -
User-925286913 posted
Have you tried this:
<asp:MenuItem Text="<img src="img/een_done.jpg" alt="shirts, fabric" />Fabric"></asp:MenuItem>
Friday, June 12, 2009 1:49 PM