Web Tutorials

Interview Q & A

Code Examples

Utility Tools

ASP.NET Compare two Input Field Using CompareValidator

ASP.NET compare two input fields value using CompareValidator to validate input fields. The CompareValidator control belongs to System.Web.UI.WebControls

Syntax

ASP.NET CompareValidator Control Property

PropertyDescription
ControlToValidateSpecifies control name which needs to be validate.
DisplaySpecifies behavior of the error message.
EnableClientScriptSpecifies whether or not client-side validation is enabled.
EnabledSpecifies whether or not validation control is enabled or not.
ErrorMessageSpecifies error messageto be display in validation summary.
ForeColorSpecifies error message color.
IsValidIndicate if associate control passes validation or not.
SetFocusOnErrorSet focus on associate control if validation fails.
TextSpecifies text to be display if validation fails.
ValidationGroupSpecifies validation group name.
ValidateUpdate the isvalid propery.
ValidateGetValidationPropertyDetermineing validation property of a control, if it exists.
EqualThis is used to check whether the compared value are equal.
NotEqualThis is used to check whether the compared value are not equal.
GreaterThanThis is used to check whether the compared value are greater than.
GreaterThanEqualThis is used to check whether the compared value are greater than equal
LessThanThis is used to check whether the compared value are less than.
LessThanEqualThis is used to check whether the compared value are less than equal.
DataTypeCheckThis is used to compare data type.

ASP.NET Compare two Input Field Using CompareValidator Example

Above example will produce following output

RequiredFieldValidator

RegularExpressionValidator

RangValidator

CompareValidator

CustomValidator

ValidationSummary