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.
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.
linkButton.Attributes.Add("onmouseover", "yourChangeColorFunction();");
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; }