asp:button onmouseover?

cpopham

Junior Contributor
Joined
Feb 18, 2004
Messages
273
I would like to have a menu popup to the side of a button when the mouse goes over the button. Perhaps I could use a panel control, but I do not see an onmouseover event for the asp:button control. There must be something though because when you mouseover a web button the outside edge becomes highlighted. Does anyone know how to accomplish this? I would like to kind of have a popup mee...

Chester
 
Maybe in the code-behind , use Attributes..something like:

youcontrol.Attributes.Add("onMouseOver", "this.style.backgroundColor='Gray';this.style.cursor='hand'")
 
Back
Top