How do change the text in a asp:Button control while mouseover? Posted on February 21, 2009 by KC How do shift the content in the asp:Button carry out whilst mouseover?
Hi,In Asp.Net, we can get the mouserOver event for button using Page add attributes…For Example: You can use this type to fire Button Onmouse over event…PageLoad(){btnExMouseOver.Attributes.Add (“onmouseover”, “return validate();”);}Then just using java script for that function in HTML page ex:function validate() { here put your coding…. as per your requirement…. }I hope it will helpful to you….
Hi,
In Asp.Net, we can get the mouserOver event for button using Page add attributes…
For Example:
You can use this type to fire Button Onmouse over event…
PageLoad()
{
btnExMouseOver.Attributes.Add
(“onmouseover”, “return validate();”);
}
Then just using java script for that function in HTML page
ex:
function validate()
{
here put your coding….
as per your requirement….
}
I hope it will helpful to you….