Click here to Skip to main content
15,885,546 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
How to define hover/ MouseEnter Event for Asp button? I dont wanna use Jquery.. I want to write event in the code behind the asp..

Example:
C#
protected void Page_Load(object sender, EventArgs e)
        {
            PanelID.Visible = false;
        }
protected void Button_MouseOver(object sender, EventArgs e)
        {
            PanelID.Visible = true;

        }
Posted
Comments
vinodkumarnie 13-Feb-13 2:17am    
Which application you are using..? Windows or web...?
Janani Muthaiyan 13-Feb-13 2:18am    
Using ASP.net Website

1 solution

Hi,

You might wana check the below link.

http://social.msdn.microsoft.com/forums/en-US/winforms/thread/aa431c76-df11-4d72-9255-191b28dce9a3[^]

Hope it helps.

regards
anurag
 
Share this answer
 
Comments
Janani Muthaiyan 13-Feb-13 2:15am    
Is MouseEnter a predefined event?
Anurag Sinha V 13-Feb-13 3:34am    
Hi Janani..
No i dont think so.MouseEnter isnt a predefined event of an asp.net Button...You need to add code for MouseEnter..have a look at the asp.net Button class..you might get some idea...
http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.button.aspx

Hope it helps..
Janani Muthaiyan 16-Feb-13 7:40am    
Then, How can we code for MouseOver/ MouseEnter/ hover manually? Any suggestions..

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900