Hi, I'm using an asp:LinkButton. The text underlines upon hovering over it. However I want it to always have an underline. Can anyone tell me how to achieve this?
Thanks!
Hi, I'm using an asp:LinkButton. The text underlines upon hovering over it. However I want it to always have an underline. Can anyone tell me how to achieve this?
Thanks!
Try setting LinkButton.CssClass to "underlinedLinkButton", then add this to your CSS file.
.underlinedLinkButton { text-decoration:underline; }