WebBrowser & events

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
 
S

Scott M.

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.
 
B

benjamin.berube

My error... I meant .Net 2.0, not ASP.Not. I'm actually doing a
WinForm application.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top