Reputation: 1610
I'm developing an application in C# using visual web developer. I'm displaying some text for reading and I want the user to be able to select a word or fragment, and then right click it to display a customized menu (One that has for example define, search, show grammar...). I I don't know how to do it. I'm fairly new to the .Net
Thanks!
Upvotes: 0
Views: 442
Reputation: 161831
You have to do that entirely on the client-side, in JavaScript.
Note that it's considered a bad idea to take over right-click, which the user has the right to expect will work the same no matter which application they are using.
Upvotes: 1