Wednesday, 21 January 2015

how to Disable backspace in textbox using javascript?

<asp:TextBox  runat="server" ID="txtDemo"
                              onkeydown="return false;"  
                              onpaste = "return false;"

                               onkeypress="return false;">
</asp:TextBox> 

No comments:

Post a Comment