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
Scott M. - 29 Sep 2006 04:18 GMT
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.
> Hi,
>
[quoted text clipped - 5 lines]
>
> ben
benjamin.berube@gmail.com - 30 Sep 2006 15:05 GMT
My error... I meant .Net 2.0, not ASP.Not. I'm actually doing a
WinForm application.