ModelClientValidationRule.ValidationType Property

Visual Studio 2010

Gets or sets the validation type.

Namespace:  System.Web.Mvc
Assembly:  System.Web.Mvc (in System.Web.Mvc.dll)

'Declaration
Public Property ValidationType As String
	Get
	Set

Property Value

Type: System.String
The validation type.

The following example shows how the ModelClientValidationRegexRule constructor sets the error message and validation type, and how it adds a regular expression rule.

Public Class ModelClientValidationRegexRule 
    Inherits ModelClientValidationRule 
    Public Sub New(ByVal errMessage As String, ByVal pattern As String) 
        ErrorMessage = errMessage 
        ValidationType = "regularExpression" 
        ValidationParameters.Add("pattern", pattern) 
    End Sub 
End Class

Community Additions

ADD
Show: