Underline hyperlinks on mouse over

Easiest way is through a style sheet - if you are using VB.Net then the default one does this for you. Otherwise a style like
Code:
A:link
{
color: #3333cc;
text-decoration: none;
}	

A:hover	
{	
text-decoration:	underline;
color:	#3333cc;
}
should do the trick
 
I already saw that, but it doesn't work .
I have a control in another control ... and then this second control on a page. Maybe it's because of that ?
 
Back
Top