How do change the text in a asp:Button control while mouseover?
You can use this type to fire Button Onmouse over event...
PageLoad()
In Asp.Net, we can get the mouserOver event for button using Page add attributes...
{
btnExMouseOver.Attributes.Add
("onmouseover", "return validate();");
}
Then just using java script for that function in HTML page
ex:
<script language='javascript'>
function validate()
{
here put your coding....
as per your requirement....
}
:afrog:
Re: How do change the text in a asp:Button control while mouseover?
ASP.NET questions belong in the ASP.NET forum. I've asked the mods to move this thread.
That said, I'm even sure that you're asking a question. Are you?
Re: How do change the text in a asp:Button control while mouseover?
Thread moved to ASP.Net forum
Re: How do change the text in a asp:Button control while mouseover?
I think he was trying to create a 'code snippet'/FAQ type thing...