ASP Panel
-
Hi! I have a few problems. I have a panel and I want to implement the "mouse_over" method. I managed to implement the "mouse_click" method, because as you know asp.net doesn't provide these methods for a Panel. And also I would like to change the mouse sensitivity while my mouse is over the panel. Can anyone help me please? Any idea is appreciated..
-
Hi! I have a few problems. I have a panel and I want to implement the "mouse_over" method. I managed to implement the "mouse_click" method, because as you know asp.net doesn't provide these methods for a Panel. And also I would like to change the mouse sensitivity while my mouse is over the panel. Can anyone help me please? Any idea is appreciated..
Hi, ASP.NET panel is rendered as DIV. See DIV element specification here: http://www.w3schools.com/tags/tag_DIV.asp[^] there is the table "Event Attributes". Onmouseover is what you are looking for.
Petr Pechovic my latest articles: Web Page Loading in Steps - ASP.NET Solution[^] Buttons, Message Box and Confirm Box in ASP.NET 3.5[^]
-
Hi! I have a few problems. I have a panel and I want to implement the "mouse_over" method. I managed to implement the "mouse_click" method, because as you know asp.net doesn't provide these methods for a Panel. And also I would like to change the mouse sensitivity while my mouse is over the panel. Can anyone help me please? Any idea is appreciated..
-
As Petr said, use the DIV tag instead of ASP:Panel. Sometimes panel will not work properly in some browsers, eg.IE8
Success is the good fortune that comes from aspiration, desperation, perspiration and inspiration.
Hi, I just write one more comment if I may :)... ASP.NET Panel is DIV. It is rendered as DIV element into DOM. You can use it, there is no doubt about it. Even though there is no intellisense in VS for "onmouseover" it will works well.
Petr Pechovic
my latest articles:
Web Page Loading in Steps - ASP.NET Solution[^]
Buttons, Message Box and Confirm Box in ASP.NET 3.5[^]