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

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -