Validator.StringLength Method
Defines a validation test that tests the length of a string.
Assembly: System.Web.WebPages (in System.Web.WebPages.dll)
public static function StringLength( maxLength : int, minLength : int, errorMessage : String ) : IValidator
Parameters
- maxLength
- Type: System.Int32
The maximum length of the string.
- minLength
- Type: System.Int32
The minimum length of the string. The default is 0.
- errorMessage
- Type: System.String
The error message to display if validation fails.
Show: