I'm developing an asp.net project, I want to disable context menu that appears on a right mouse click. On the master page I wrote this code:
<body dir="rtl" oncontextmenu="return false;"></body>
the context menu is disabled on all pages but it is enabled on iframe
. I dont want the user to be able to save or inspect iframe
content.
Any idea?