December 17, 2011

How to disable cut copy paste in a textbox

Sometimes it is very necessary to disable cut,copy & paste in a textbox.
We can easily do it in ASP.Net.

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

It’s very handy technique.

That’s It.
Enjoy Learning.

No comments:

Post a Comment