0

I have done my project in asp. I want to disable the right click and copy past for whole project. Any idea for that, in project no of users and more than 1 master page.

Damith
  • 62,401
  • 13
  • 102
  • 153
Shailendra
  • 33
  • 1
  • 11

2 Answers2

5

You can do so with Javascript and/or an HTML attribute

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

And....

<body oncontextmenu="return false">
...
</body>
Yaser Darzi
  • 1,480
  • 12
  • 24
0
<body oncontextmenu="return false"> </body>

This will disable the right click on the body.

Raxak
  • 389
  • 3
  • 17