How do change the text in a asp:Button control while mouseover?

How do shift the content in the asp:Button carry out whilst mouseover?

One thought on “How do change the text in a asp:Button control while mouseover?

  1. 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….

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>