For disabling right click on image use this attribute in body tag <body oncontextmenu=”return false”>
Archive for December 9th, 2009
disable contextmenu
Posted in Web Development with ASP.NET on December 9, 2009 | Leave a Comment »
disable image toolbar
Posted in Web Development with ASP.NET on December 9, 2009 | Leave a Comment »
Use this markup to disable image toolbar for all the images in the page <meta http-equiv=”imagetoolbar” content=”no” /> For individual image use this markup <img src=”image.jpg” gallerying=”no” />
Disable copying on page
Posted in Web Development with ASP.NET, tagged javascript on December 9, 2009 | Leave a Comment »
Use this attributes to disable copying from your page <body ondragstart=”return false” onselectstart=”return false”>