Question : How to change the font color of a visited item of a ASP menu

I have a main menu. Some of the items will have a submenu. When I choose a item which has a submenu I want to have the font color of the item which has been chosen in a different color.  I want to set the same behavior when using a.visited

I would like to do this to see clearly which item of menu has been chosen. I have used "DynamicSelectedStyle" for that but when I use it, the font color of the chosen item doesn´t change.  I also used StaticSelectedStyle-ForeColor property but it didn't work either.
 Am I using the correct instruction for this?
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
<asp:SiteMapDataSource ID="MyMenu" runat="server" 
     ShowStartingNode="True"         StartFromCurrentNode="False"                     StartingNodeUrl="~/MyPage.aspx" />                                  
   <asp:Menu ID="Menu1" runat="server"
             DataSourceID="MyMenuDS" 
             DynamicMenuStyle-CssClass="adjustedZIndex" 
             StaticEnableDefaultPopOutImage="False" 
             DynamicVerticalOffset="36" 
             DynamicHorizontalOffset="-104" 
             SkipLinkText=""  
StaticSelectedStyle-ForeColor="Red">                          
                                       
<StaticMenuItemStyle  CssClass="MenuLevel0" />                                
     <StaticHoverStyle CssClass="MenuLevel0Hover" /> 
     <StaticSelectedStyle CssClass="MenuLevel0Visited" />
     <DynamicMenuStyle CssClass="adjustedZIndex" /> 
     <DynamicMenuItemStyle CssClass="MenuLevel1" /> 
     <DynamicHoverStyle CssClass="MenuLevel1Hover" /> 
                        
 </asp:Menu>

And here are the styles
.MenuLevel0
{	
	color:Black; font-size:small; 
}

.MenuLevel0Visited
{
	color: White; 
}

.MenuLevel1
{
	color: Black; font-size:small;	
}

.MenuLevel0Hover
{	
    font-weight:bold;
}

.MenuLevel1Hover
{		
	font-weight:bold;
}

Answer : How to change the font color of a visited item of a ASP menu

going to reinstall the whole crm & sql server
Random Solutions  
 
programming4us programming4us