• Fluent
  • Fluent Dark
  • Bootstrap v5
  • Bootstrap v5 Dark
  • Tailwind CSS
  • Tailwind CSS Dark
  • Material
  • Bootstrap v4
  • High Contrast
Preferences
Mode Selection
Touch
Mouse
Theme Selection
Localization
*Translated by Google Translator.
Currency
Essential Studio
HOME
All Controls

Example of Range Validation in ASP.NET Core Numeric Textbox Control

This sample demonstrates the range validation functionalities of the Numeric TextBox. Change the min, max and step values and click on apply button to change the property values in Numeric TextBox.

DEMO
SOURCE
Numeric TextBox
Min Value
Max Value
Increment Step

The NumericTextBox has the options to restrict the input value between a specific range using the min, max, and strictMode properties.

When you enable the strictMode property, the value will automatically change within a range on passing the out-of-range values. When you disable the strictMode property, the NumericTextBox component allows the out-of-range value with the highlighted textbox to indicate the given value is wrong.

In this demo, numeric textbox is restricted between 10 to 100 through the min and max properties. So you can enter only the value between this range.

More information about NumericTextBox can be found in this documentation section .