vote up 0 vote down star

code:


LinkButton linkButton = new LinkButton(); linkButton.OnClientClick="changecolor";--i need to change this to on mouse focus event


there is no property for for link button like we have onClientClick.

flag

22% accept rate

3 Answers

vote up 0 vote down

it cant workin..!!

link|flag
vote up 1 vote down

you can define the css class for tha link button that will have diffent color when you hover.

a { color:black; } a.hover { color:blue; }

link|flag
vote up 2 vote down
linkButton.Attributes.Add("onmouseover", "yourChangeColorFunction();");
link|flag
If you only want to change the color I would recommend using CSS as Jalpesh wrote, only the syntax is "a:hover { color: blue; }" – ullmark May 6 at 16:51

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.