|
-
Dec 6th, 2008, 07:21 AM
#1
Thread Starter
New Member
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....
}
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|