ValidationRule

Wisej.Web.ValidationRule

Namespace: Wisej.Web

Assembly: Wisej.Framework (3.5.0.0)

Represents a validation rule within an instance of the Validation extender.

public class ValidationRule

Constructors

Initializes a new instance of a ValidationRule implementation.

Initializes a new instance of a ValidationRule implementation using the specified name and optional invalidMessage .

NameTypeDescription

name

Name of the validation rule.

invalidMessage

Error message related to the validation rule.

Properties

Boolean: Enables or disables the validation rule. Since 3.2.7 (Default: True)

IErrorProvider: Returns or sets the control that displays the InvalidMessage string. (Default: null)

String: Returns or sets the error message for the validation rule. (Default: null)

String: Returns or sets the name of the validation rule. (Default: null)

Methods

Invoked when the control associated with the validation rule is created and ready to be rendered on the client.

ParameterTypeDescription

control

Control being created.

The ControlCreated event is fired when the control is made visible the first time and it's ready to be displayed on the client browser; it's not fire when the control is constructed. Use this overload if your custom ValidationRule needs to read or set properties on the control itself. i.e. set the Filter, or format strings.

Invoke after the control has been validated successfully.

ParameterTypeDescription

control

Control that validated successfully.

Invoked when the control is being validated.

ParameterTypeDescription

control

Control being validated.

Returns: Boolean. true if the validation is successful; otherwise false.

Inherited By

NameDescription

Validates the control using a custom Regex expression.

Validates controls that cannot be left empty.

Validates telephone numbers.

Validates decimal values.

Validates currency values.

Validates long integer values.

Validates email addresses.

Last updated