Wednesday, 13 June 2012

Disable cut, copy & paste in textbox in asp.net without scripting

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

No comments:

Post a Comment