Wednesday 6 July 2011

How to prevent copy contents from webpage using Javascript?

If you want to prevent copy whole content of web page then use on dragstart as false and on select start as false inside of body tag like below.

<body ondragstart="return false" onselectstart="return false">

// Your content placed here

</body>

If you want prevent cut, copy, paste text in your text box then try like this way

<asp:TextBox ID="TextBox1" runat="server" oncopy="return false" onpaste="return false"
oncut="return false"></asp:TextBox>

No comments:

Post a Comment