hello,
I have asp.net textbox I want user can type min 1 and max 10 in textbox
I tried this tag but does not work
<asp:TextBox ID="TextBox1" runat="server" Text="8" Width="50px" max="10" min="1"></asp:TextBox>
I made it number mode still its allowing user to type more than 10 value
Please advice