BaseCompareValidator::Compare Method (String, String, ValidationCompareOperator, ValidationDataType)
Compares two strings using the specified operator and data type. This version of the overloaded method compares currency, double, and date values using the format used by the current culture.
Assembly: System.Web (in System.Web.dll)
protected: static bool Compare( String^ leftText, String^ rightText, ValidationCompareOperator op, ValidationDataType type )
Parameters
- leftText
- Type: System::String
The value on the left side of the operator.
- rightText
- Type: System::String
The value on the right side of the operator.
- op
- Type: System.Web.UI.WebControls::ValidationCompareOperator
One of the ValidationCompareOperator values.
- type
- Type: System.Web.UI.WebControls::ValidationDataType
One of the ValidationDataType values.
Return Value
Type: System::Booleantrue if the leftValue parameter relates to the rightValue parameter in the manner specified by the op parameter; otherwise, false.
The Compare(String, String, ValidationCompareOperator, ValidationDataType) method is used to test whether the value of the leftText parameter relates to the value of the rightText parameter in the manner specified by the op parameter. The type parameter specifies the data type of the values being compared.
Note |
|---|
If the op parameter is set to ValidationCompareOperator.DataTypeCheck, this method tests only the value of the leftText parameter for the data type specified by the type parameter. The rightText parameter is ignored. |
This version of the method compares the values using the format used by the current culture. To compare the values using a culture-neutral format, use the BaseCompareValidator::Compare(String, Boolean, String, Boolean, ValidationCompareOperator, ValidationDataType) overloaded version of this method.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note