I am using the following code to create a static menu, but using images instead of text..
<asp:Menu ID="Menu1" runat="server">
<Items>
<asp:menuitem navigateurl="default.aspx"
text=""
imageurl="Images\nav_Home.gif"
popoutimageurl="Images\nav_Home_selected.gif"
tooltip="Home">
</asp:menuitem>
Can anyone tell me if it's possible and how to perform an image swap on hover and also an image swap on click so that it is clear which menu item has been selected?
Many thanks.
...
Go to the complete details ...