Sign In| Join
Get Help:Ask a Question in our Forums|Report a Bug|More Help Resources
Last post Aug 01, 2012 02:27 PM by Damn Code
Member
17 Points
84 Posts
Aug 01, 2012 01:52 PM|LINK
how to control/change anchor control hover property in code behind c# , as per specific condition
C#.net css
Participant
1513 Points
292 Posts
Aug 01, 2012 02:27 PM|LINK
<style type="text/css"> a { text-decoration:none; } a.someClass:hover { text-decoration:underline; } </style>
in the code behind:
HyperLink1.CssClass = "someClass";
1883 Points
323 Posts
Hi friend
check this
http://www.dotnetspider.com/forum/314134-Control-change-anchor-control-hover-property-code-behind-c.aspx
anbujeremiah
Member
17 Points
84 Posts
control/change anchor control hover property in code behind c#.net
Aug 01, 2012 01:52 PM|LINK
how to control/change anchor control hover property in code behind c# , as per specific condition
C#.net css
shatru
Participant
1513 Points
292 Posts
Re: control/change anchor control hover property in code behind c#.net
Aug 01, 2012 02:27 PM|LINK
<style type="text/css"> a { text-decoration:none; } a.someClass:hover { text-decoration:underline; } </style>in the code behind:
Regards
Ajatshatru
Dragons Lab
Damn Code
Participant
1883 Points
323 Posts
Re: control/change anchor control hover property in code behind c#.net
Aug 01, 2012 02:27 PM|LINK
Hi friend
check this
http://www.dotnetspider.com/forum/314134-Control-change-anchor-control-hover-property-code-behind-c.aspx
Please remember to Mark the replies as Answers if they help & unmark them if they provide no help.