| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- /**
- * Namespace: System.Web.UI.WebControls
- * Class: CompareValidator
- *
- * Author: Gaurav Vaish
- * Maintainer: [email protected]
- * Implementation: yes
- * Status: 80%
- *
- * (C) Gaurav Vaish (2001)
- */
- using System;
- using System.Web;
- using System.Web.UI;
- namespace System.Web.UI.WebControls
- {
- public class CompareValidator: BaseCompareValidator
- {
- public CompareValidator()
- {
- // Intitalize();
- }
-
- public string ControlToCompare
- {
- get
- {
- object o = ViewState["ControlToCompare"];
- if(o!=null)
- return (string)o;
- return String.Empty;
- }
-
- set
- {
- ViewState["ControlToCompare"] = value;
- }
- }
-
- public ValidationCompareOperator Operator
- {
- get
- {
- object o = ViewState["Operator"];
- if(o!=null)
- return (ValidationCompareOperator)o;
- return ValidationCompareOperator.Equal;
- }
- set
- {
- if(!System.Enum.IsDefined(typeof(ValidationCompareOperator), value))
- throw new ArgumentException();
- ViewState["Operator"] = value;
- }
- }
-
- public string ValueToCompare
- {
- get
- {
- object o = ViewState["ValueToCompare"];
- if(o!=null)
- return (string)o;
- return String.Empty;
- }
- set
- {
- ViewState["ValueToCompare"] = value;
- }
- }
-
- [MonoTODO]
- protected override bool EvaluateIsValid()
- {
- string ctrl = GetControlValidationValue(ControlToValidate);
- throw new NotImplementedException();
- if(ctrl!=null && ctrl.Length > 0)
- {
- //string
- return false;
- }
- return true;
- }
- }
- }
|