1
Reply

Suppose you want a certain ASP.NET function executed on MouseOver for a certain button. Where do you add an event handler?

18y
8.9k
0
Reply

    Add an OnMouseOver attribute to the button. 

    Example:

    btnSubmit.Attributes.Add(”onmouseover”,”someClientCodeHere();”);

    18y
    0