Mouse events

  • Thread starter Thread starter Dosty
  • Start date Start date
D

Dosty

Hello!
I have to use something similar to System.Windows.Forms.MouseEventArgs
in a web form in asp.net.....could u suggest me something,please??
Thank u
 
you'll have to capture mouse events with clientside code, not server
executed asp.net events.
 
see the window.event object . The IE implementation varies to extent from
the W3C standard (mostly in mouse button assigment, and registering event
handlers) but common code is not difficult.

-- bruce (sqlwork.com)
 
Back
Top