This may be an easy question but i have a few asp:linkbuttons that i am trying to change the color of the buttons when the mouse goes over and vice versa. I can do this with the <a href> in html but am not sure how this is done with the server side controls. Can you help? Thanks!!
Here is one way:
<stlye>
a#LinkButton1:hover{color:red}
</style>
<asp:LinkButton ID="LinkButton1" runat="server" >LinkButton</asp:LinkButton>