WebNumericEditor1.MinValue = 10 WebNumericEditor1.MaxValue = 100
WebNumericEditor™ allows you to set a range of values that your end-user can enter into the editor by simply setting the control’s MinValue and MaxValue properties. If an end-user types a number more than the maximum value then the editor sets the value to the maximum value. Similarly, if an end-user types a number less than the minimum value then the editor sets the value to the minimum value.
You can set the MinValue and MaxValue properties either by using the Microsoft® Visual Studio® Property Window or by using the following code:
In Visual Basic:
WebNumericEditor1.MinValue = 10 WebNumericEditor1.MaxValue = 100
In C#:
WebNumericEditor1.MinValue = 10; WebNumericEditor1.MaxValue = 100;