hello,
i have this textbox , i want to apply validation so user can only type one digit between 1 to 9
<asp:TextBox ID="txthusband" min="1" AutoCompleteType="None" placeholder="# of Heirs" runat="server" TextMode="Number"></asp:TextBox>
Hi nauna,
Use below code.
HTML
<asp:TextBox runat="server" TextMode="Number" MaxLength="1" min="1" max="9" onkeypress='if(this.value.length==1) return false;return event.charCode >= 49 && event.charCode <= 57' />
Sample
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title> </head> <body> <input type="number" maxlength="1" min="1" max="9" onkeypress="if(this.value.length==1) return false;return event.charCode >= 49 && event.charCode <= 57" /> </body> </html>
Demo
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.