Click here to Skip to main content
Click here to Skip to main content

Disabling the right click on web page

By , 12 Aug 2005
 

Download demo project - 2.57 Kb

Introduction

Want to protect your source code? Using this code will prevent the vast majority of users from right-clicking over a page and choosing "View source", or right-clicking over an image and saving it.

Some times there might be the requirement to disable the pop up menu on click of right button.

 

Programmers may need to disable right click to prevent user from saving the images on the page or viewing the source of the page.

 

Though disabling right click is not complete solution to save the data, but it will make task difficult, or may be impossible for the rookies.

 

I searched on a net for the solution to this problem and i got following solution.

Method 1

      In this method we add a javascript method, in this we check if click is right click or left click if it is right click then a message is displayed like "Right click disabled"

 

<script language="javascript">
document.onmousedown=disableclick;
status="Right Click Disabled";
Function disableclick(e)
{
  if(event.button==2)
   {
     alert(status);
     return false;	
   }
}
</script>
 

But in this solution if you click the right click it displays the message

“Right click disabled”.

 

If we want to remove the messegebox then this solution do not work.

 

  I am having another simple solution to achieve the same result and also it does not show the messegebox.

Method 2

          In this method we set the oncontextmenu="return false" in the body part of the page

so body part will look like

<body oncontextmenu="return false">
...
</body>

So whenever user clicks the right mouse button nothing will happen, no message no context menu.

 

 Sometimes there might be requirement to disable the right click on specific control to achive this we have to follow these steps.

1.      remove added code in body (i.e. oncontextmenu=”return false”)

2.      Add one table and in its row add the control e.g. datagrid control

3.      put the oncontextmenu=”return false” in the <tr> for that control

 

So code will look like this

<Body>
  <Table>
   <tr oncontextmenu="return false">
    <td>
     <asp:datagrid id="dgGrid1">---</asp:datagrid>
   </td>
  </tr>
 </Table>
</Body>

So by this method context menu on the right click of right mouse click can be disabled.

 

 

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

RohitDighe
Web Developer
India India
Member
Rohit Dighe
B.E. Computer from University of Pune, India.
 
Working on Asp.Net and C# from 2 years

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
Questionnice sirmemberntitish14 Mar '13 - 3:46 
GeneralMy vote of 5memberhadi552625 Jul '12 - 19:49 
GeneralMy vote of 5membershaminders7 Apr '12 - 23:07 
GeneralThis helped me. ThanksmemberNeCroFire22 Nov '10 - 2:56 
GeneralRe: This helped me. Thanksmemberhadi552625 Jul '12 - 19:50 
Generaluseless trickmemberanojkumar1 Jul '08 - 18:47 
QuestionHow to disable Copy/Past into a TextBoxmemberSudipta(Bubun)28 Jun '07 - 20:22 
AnswerRe: How to disable Copy/Past into a TextBoxmemberanil 1kumar23 Oct '07 - 19:05 
GeneralOther ways to access the menumemberPhilippe Mori13 Aug '05 - 8:14 
GeneralWaste of timesussAnonymous13 Aug '05 - 7:14 
GeneralWhy you shouldn't do this:memberPhil Uribe12 Aug '05 - 12:18 
QuestionAre you serious??memberJoeySpimoley7 Aug '05 - 4:18 
GeneralDon't do thismemberector5 Aug '05 - 10:40 
GeneralHTML trick...memberPixiGreg5 Aug '05 - 2:59 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130516.1 | Last Updated 12 Aug 2005
Article Copyright 2005 by RohitDighe
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid