n_x_l
n_x_l

Reputation: 1610

Customized right click Menu in a Web Page text area!

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

Answers (1)

John Saunders
John Saunders

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

Related Questions