|
|
<asp:hyperlink> on mouseover add a underline, onmouseout remove underline
Last post 11-13-2007, 2:48 PM by pskobel. 0 replies.
-
11-13-2007, 2:48 PM |
-
pskobel
-
-
-
Joined on 01-24-2007
-
-
Posts 26
-
-
|
<asp:hyperlink> on mouseover add a underline, onmouseout remove underline
example in c# code:
ahphome.Attributes[ "onmouseover"] = "this.style.textDecoration='underline'";
ahphome.Attributes[ "onmouseout"] = "this.style.textDecoration='none'";
|
|
|
|
|