How can i implement Mouse scroll click(Middle Button) event in asp.net
and c#
?
I also referred in the MouseWheel Event. But it's does not helps to me.
Because there have
Mouse events occur in the following order:
- MouseEnter
- MouseMove
- MouseHover / MouseDown / MouseWheel
- MouseUp
- MouseLeave
and also tried some codes from Stack Overflow
Jquery alert when middle mouse button clicked?
But it's implemented in java script(i don't know it is worked well on Firefox browser). I want to implement that using asp.net c#. Is it possible? if yes, please let me know.
Thanks .