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