Thursday, December 22, 2011

Readonly Textbox with backspace restricted


Instead of using following code

   <asp:TextBox ID="txt_to" runat="server" Width="85px" ReadOnly="true"></asp:TextBox>

Use this code
   
<asp:TextBox ID="txt_to" runat="server" Width="85px" onkeydown="return false;"></asp:TextBox>

No comments:

Post a Comment