Posts Disable Cut, Copy & Paste in ASP.Net textbox
Post
Cancel

Disable Cut, Copy & Paste in ASP.Net textbox

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>
This post is licensed under CC BY 4.0 by the author.