html - Is there a numeric UpDown control for ASP.NET? -
is there way can use numeric updown in asp.net without using javascript?
and if not, there alternative?
i trying same thing, , turns out asp textbox has option it. worked me this:
<asp:textbox textmode="number" runat="server" min="0" max="20" step="1"/>
this gave me textbox which, when mouseovered or given focus, shows up-down controls, , allows numbers min max. works same
<input type="number" min="0" max="20" step="1">
Comments
Post a Comment