WebBrowser & events

  • Thread starter Thread starter benjamin.berube
  • Start date Start date
B

benjamin.berube

Hi,

i've been trying in the last day to use the WebBrowser in ASP.Net 2.0
so that I could get some MOUSEMOVE event. Actually, the problem is
that the control doesn't implement the MouseEnter and MouseLeave
events, which I really need. Anyone could tell me why those are not
implemented and how I can do these?

ben
 
They are not implemented because the ASP.NET Web Form Controls are server
side controls, because all ASP.NET code runs on the web server and not the
browser.

To use client events like you want, simply use client-side JavaScript as has
always been the case.
 
My error... I meant .Net 2.0, not ASP.Not. I'm actually doing a
WinForm application.
 
Back
Top