In my web page there is link button and on that link button i want to add pseudo class of css which is made in another css page. I call that css page in aspx page. I want to use my pseudo class with this linkbutton .How to use this?
So my question is :I want to add this pseudo cssclass in linkbutton. how to do that?
This css want to call on linkbutton.
<style type="text/css">
lbtnLogOut:link {color:red;font-size: 12px;font-family: Verdana, Arial;font-size: 12px;}
lbtnLogOut:visited {color:#598090;font-size: 12px;font-family: Verdana, Arial;font-size: 12px;}
lbtnLogOut:hover {color:green;font-size: 12px;font-family: Verdana, Arial;font-size: 12px;}
lbtnLogOut:active {color:Fuchsia;font-size: 12px;font-family: Verdana, Arial;font-size: 12px;}
</style>
On this link button i want to use.
<asp:LinkButton ID="lbtnLogOut" runat="server" OnClick="lbtnLogOut_Click" cssClass="lbtnLogOut"
CausesValidation="False" OnClientClick="return ValidateTextBox();">Log Out</asp:LinkButton>
This is not working .please someone modify it.