hi
i have linkbutton in my page i want when users go on text of linkbutton with mouse, linkbutton's text be bold.
how i can do it?
thanks
Add a CSS Class
.LinkButton:hover{font-weight:bold}
And apply it to LinkButton
<asp:LinkButton ID="LinkButton1" runat="server" CssClass = "LinkButton" Text = "LinkButton"></asp:LinkButton>
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.