hello
i have this textbox with mode number i want it should only take positive values not negative values
<asp:TextBox ID="txtminnight" runat="server" TextMode="Number"></asp:TextBox>
Hi nauna,
Please set TextBox min property to 1 which will accept number from 1.
HTML
<asp:TextBox ID="txtminnight" runat="server" TextMode="Number" min="1"></asp:TextBox>
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.