Wednesday, 14 September 2011

How to prevent drag & drop and copy paste text in your asp TextBox control?

You can do it as:

<asp:TextBox ID="txtSeqNo" runat="server" onDrop="blur( ); return false;" onPaste="return false;" >

No comments:

Post a Comment