Jul 9th, 2009 | 5 Comments

You can disable cut, copy & paste in ASP.Net textbox in very simple way,

here is how you can disable the cut, copy, paste,

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