![]() |
|
|
|||||||
![]() |
ASP Net - How can i disable "RightClick Menu" in Internet Explorer ? |
|
|
Thread Tools | Search this Thread |
|
|
#1 |
|
Hi,
How can i disable "RightClick Menu" in Internet Explorer, when access the frontpage ? tks a lot ! Ken Ken Yu |
|
|
|
|
#2 |
|
Posts: n/a
|
Ken,
Setup your oncontextmenu event handler that will do nothing. Eliyahu "Ken Yu" <> wrote in message news:%2322Oyk%... > Hi, > > How can i disable "RightClick Menu" in Internet Explorer, when > access the frontpage ? > > tks a lot ! > Ken > > Eliyahu Goldin |
|
|
|
#3 |
|
Posts: n/a
|
Eliyahu,
Sorry ! I want to disable "RightClick Menu" in WebForm ? How can do that ? tks a lot ! Ken "Eliyahu Goldin" <> ¼¶¼g©ó¶l¥ó·s»D:uhmII2% .gbl... > Ken, > > Setup your oncontextmenu event handler that will do nothing. > > Eliyahu > > "Ken Yu" <> wrote in message > news:%2322Oyk%... >> Hi, >> >> How can i disable "RightClick Menu" in Internet Explorer, when >> access the frontpage ? >> >> tks a lot ! >> Ken >> >> > > Ken Yu |
|
|
|
#4 |
|
Posts: n/a
|
Ken,
When you right-click an html element, browser triggers oncontextmenu event. The menu you see now is generated by the default event handler. You want to disable the default behavior. To do this, you can write your own javascript event handler for oncontextmenu event that will just do nothing. So nothing will happen when you right-click. Eliyahu "Ken Yu" <> wrote in message news:OZjws6%... > Eliyahu, > > Sorry ! I want to disable "RightClick Menu" in WebForm ? > > How can do that ? > > tks a lot ! > Ken > > > "Eliyahu Goldin" <> ¼¶¼g©ó¶l¥ó·s»D:uhmII2% .gbl... > > Ken, > > > > Setup your oncontextmenu event handler that will do nothing. > > > > Eliyahu > > > > "Ken Yu" <> wrote in message > > news:%2322Oyk%... > >> Hi, > >> > >> How can i disable "RightClick Menu" in Internet Explorer, when > >> access the frontpage ? > >> > >> tks a lot ! > >> Ken > >> > >> > > > > > > Eliyahu Goldin |
|
|
|
#5 |
|
Posts: n/a
|
isn't that a javascript thing?
On Mon, 1 Nov 2004 16:39:07 +0800, "Ken Yu" <> wrote: >Eliyahu, > > Sorry ! I want to disable "RightClick Menu" in WebForm ? > >How can do that ? > >tks a lot ! >Ken > > >"Eliyahu Goldin" <> ¼¶¼g©ó¶l¥ó·s»D:uhmII2% .gbl... >> Ken, >> >> Setup your oncontextmenu event handler that will do nothing. >> >> Eliyahu >> >> "Ken Yu" <> wrote in message >> news:%2322Oyk%... >>> Hi, >>> >>> How can i disable "RightClick Menu" in Internet Explorer, when >>> access the frontpage ? >>> >>> tks a lot ! >>> Ken >>> >>> >> >> > JuLiE Dxer |
|
|
|
#6 |
|
Posts: n/a
|
Chances are, you don't want to disable right-click. You only think you do.
What do you think yuou will accomplish with this? For example, some newbie web developers think that they can prevent people from copying images with such a trick. However, this is not possible. Generally speaking, disabling browser functionality is a bad idea, and is usually a kluge that substitutes for good design. -- HTH, Kevin Spencer ..Net Developer Microsoft MVP I get paid good money to solve puzzles for a living "Ken Yu" <> wrote in message news:OZjws6#... > Eliyahu, > > Sorry ! I want to disable "RightClick Menu" in WebForm ? > > How can do that ? > > tks a lot ! > Ken > > > "Eliyahu Goldin" <> ¼¶¼g©ó¶l¥ó·s»D:uhmII2% .gbl... > > Ken, > > > > Setup your oncontextmenu event handler that will do nothing. > > > > Eliyahu > > > > "Ken Yu" <> wrote in message > > news:%2322Oyk%... > >> Hi, > >> > >> How can i disable "RightClick Menu" in Internet Explorer, when > >> access the frontpage ? > >> > >> tks a lot ! > >> Ken > >> > >> > > > > > > Kevin Spencer |
|
|
|
#7 |
|
Posts: n/a
|
I agree to the point that disabling browser functionality is a bad idea, but
you don't have to disable the standard menu whatsoever. I am using rightclick a lot for standard windows form-like popup menu functionality. In a standard screen, where you have a datagrid for selecting rows, it is quite naturally to be able to rightclick a row and choose an action from the popup. You still can get the browser's standard menu when you click on other areas of the window. Eliyahu "Kevin Spencer" <> wrote in message news:... > Chances are, you don't want to disable right-click. You only think you do. > What do you think yuou will accomplish with this? For example, some newbie > web developers think that they can prevent people from copying images with > such a trick. However, this is not possible. Generally speaking, and is usually a kluge that substitutes > for good design. > > -- > HTH, > Kevin Spencer > .Net Developer > Microsoft MVP > I get paid good money to > solve puzzles for a living > > "Ken Yu" <> wrote in message > news:OZjws6#... > > Eliyahu, > > > > Sorry ! I want to disable "RightClick Menu" in WebForm ? > > > > How can do that ? > > > > tks a lot ! > > Ken > > > > > > "Eliyahu Goldin" <> > ¼¶¼g©ó¶l¥ó·s»D:uhmII2% .gbl... > > > Ken, > > > > > > Setup your oncontextmenu event handler that will do nothing. > > > > > > Eliyahu > > > > > > "Ken Yu" <> wrote in message > > > news:%2322Oyk%... > > >> Hi, > > >> > > >> How can i disable "RightClick Menu" in Internet Explorer, when > > >> access the frontpage ? > > >> > > >> tks a lot ! > > >> Ken > > >> > > >> > > > > > > > > > > > > Eliyahu Goldin |
|
|
|
#8 |
|
Posts: n/a
|
Hi Eliyahu,
Now, THERE's an example of good design! -- HTH, Kevin Spencer ..Net Developer Microsoft MVP I get paid good money to solve puzzles for a living "Eliyahu Goldin" <> wrote in message news:... > I agree to the point that disabling browser functionality is a bad idea, but > you don't have to disable the standard menu whatsoever. > > I am using rightclick a lot for standard windows form-like popup menu > functionality. In a standard screen, where you have a datagrid for selecting > rows, it is quite naturally to be able to rightclick a row and choose an > action from the popup. You still can get the browser's standard menu when > you click on other areas of the window. > > Eliyahu > > "Kevin Spencer" <> wrote in message > news:... > > Chances are, you don't want to disable right-click. You only think you do. > > What do you think yuou will accomplish with this? For example, some newbie > > web developers think that they can prevent people from copying images with > > such a trick. However, this is not possible. Generally speaking, and is > usually a kluge that substitutes > > for good design. > > > > -- > > HTH, > > Kevin Spencer > > .Net Developer > > Microsoft MVP > > I get paid good money to > > solve puzzles for a living > > > > "Ken Yu" <> wrote in message > > news:OZjws6#... > > > Eliyahu, > > > > > > Sorry ! I want to disable "RightClick Menu" in WebForm ? > > > > > > How can do that ? > > > > > > tks a lot ! > > > Ken > > > > > > > > > "Eliyahu Goldin" <> > > ¼¶¼g©ó¶l¥ó·s»D:uhmII2% .gbl... > > > > Ken, > > > > > > > > Setup your oncontextmenu event handler that will do nothing. > > > > > > > > Eliyahu > > > > > > > > "Ken Yu" <> wrote in message > > > > news:%2322Oyk%... > > > >> Hi, > > > >> > > > >> How can i disable "RightClick Menu" in Internet Explorer, > when > > > >> access the frontpage ? > > > >> > > > >> tks a lot ! > > > >> Ken > > > >> > > > >> > > > > > > > > > > > > > > > > > > > > Kevin Spencer |
|
|
|
#9 |
|
Posts: n/a
|
just handle the oncontextmenu event of the document object, and return false.
Example: <script language="Javascript"> function document.oncontextmenu() { return false; } </script> hope this helps! "Kevin Spencer" <> wrote in message news:<Ok#>... > Hi Eliyahu, > > Now, THERE's an example of good design! > > -- > HTH, > Kevin Spencer > .Net Developer > Microsoft MVP > I get paid good money to > solve puzzles for a living > > "Eliyahu Goldin" <> wrote in message > news:... > > I agree to the point that disabling browser functionality is a bad idea, > but > > you don't have to disable the standard menu whatsoever. > > > > I am using rightclick a lot for standard windows form-like popup menu > > functionality. In a standard screen, where you have a datagrid for > selecting > > rows, it is quite naturally to be able to rightclick a row and choose an > > action from the popup. You still can get the browser's standard menu when > > you click on other areas of the window. > > > > Eliyahu > > > > "Kevin Spencer" <> wrote in message > > news:... > > > Chances are, you don't want to disable right-click. You only think you > do. > > > What do you think yuou will accomplish with this? For example, some > newbie > > > web developers think that they can prevent people from copying images > with > > > such a trick. However, this is not possible. Generally speaking, and is > usually a kluge that substitutes > > > for good design. > > > > > > -- > > > HTH, > > > Kevin Spencer > > > .Net Developer > > > Microsoft MVP > > > I get paid good money to > > > solve puzzles for a living > > > > > > "Ken Yu" <> wrote in message > > > news:OZjws6#... > > > > Eliyahu, > > > > > > > > Sorry ! I want to disable "RightClick Menu" in WebForm ? > > > > > > > > How can do that ? > > > > > > > > tks a lot ! > > > > Ken > > > > > > > > > > > > "Eliyahu Goldin" <> > ¼¶¼g©ó¶l¥ó·s»D:uhmII2% .gbl... > > > > > Ken, > > > > > > > > > > Setup your oncontextmenu event handler that will do nothing. > > > > > > > > > > Eliyahu > > > > > > > > > > "Ken Yu" <> wrote in message > > > > > news:%2322Oyk%... > > > > >> Hi, > > > > >> > > > > >> How can i disable "RightClick Menu" in Internet Explorer, > when > > > > >> access the frontpage ? > > > > >> > > > > >> tks a lot ! > > > > >> Ken > > > > >> > > > > >> > > > > > > > > > > > > > > > > > > > > > > > > > > > > Justin Beckwith |
|
![]() |
| Thread Tools | Search this Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Internet Explorer 8 RC1 | Admin | Front Page News | 0 | 01-29-2009 02:19 PM |
| How do I fix (Internet Explorer cannot display the webpage)? | coffeyman | MCTS | 4 | 01-26-2009 04:07 PM |
| Re: Microsoft Internet Explorer | rock | A+ Certification | 2 | 11-03-2005 08:06 PM |
| Re: Microsoft Internet Explorer | Jason Peavey | A+ Certification | 0 | 11-03-2005 08:03 PM |
| Re: Microsoft Internet Explorer | Atxa | A+ Certification | 0 | 11-01-2005 05:09 PM |