Validator.StringLength(Int32, Int32, String) Method

Definition

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.

Applies to