How can I add a Mouse Scroll Click (Middle Button) event in ASP.NET
and C#
?
I have already looked into the MouseWheel Event, but it did not provide the solution I was looking for.
This is the order in which mouse events occur:
- MouseEnter
- MouseMove
- MouseHover / MouseDown / MouseWheel
- MouseUp
- MouseLeave
I have also experimented with some code snippets from Stack Overflow.
Alert using jQuery for middle mouse button click?
However, this implementation requires JavaScript and may not work well on Firefox browser. Can I achieve this functionality using ASP.NET and C#? If so, please advise.
Thank you .