Validator.StringLength(Int32, Int32, String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Defines a validation test that tests the length of a string.
public static System.Web.WebPages.IValidator StringLength (int maxLength, int minLength = 0, string errorMessage = default);
static member StringLength : int * int * string -> System.Web.WebPages.IValidator
Public Shared Function StringLength (maxLength As Integer, Optional minLength As Integer = 0, Optional errorMessage As String = null) As IValidator
Parameters
- maxLength
- Int32
The maximum length of the string.
- minLength
- Int32
The minimum length of the string. The default is 0.
- errorMessage
- String
The error message to display if validation fails.
Returns
The validation test.