| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- /**
- * Namespace: System.Web.UI.WebControls
- * Class: BaseCompareValidator
- *
- * Author: Gaurav Vaish
- * Maintainer: [email protected]
- * Contact: <[email protected]>
- * Status: 30%
- *
- * (C) Gaurav Vaish (2001)
- */
- using System;
- using System.Collections;
- using System.Globalization;
- using System.Web;
- using System.Web.UI;
- namespace System.Web.UI.WebControls
- {
- public abstract class BaseCompareValidator: BaseValidator
- {
- protected BaseCompareValidator(): base()
- {
- super();
- }
-
- /*[
- WebSysDescriptionAttribute("RangeValidator_Type"),
- WebCategoryAttribute("Behaviour"),
- DefaultValueAttribute(System.Web.UI.WebControls.ValidationDataType)
- ]*/
- public static bool CanConvert(string text, ValidationDataType type)
- {
- //TODO: Implement me
- return false;
- }
-
- public ValidationDataType Type
- {
- get
- {
- object o = ViewState["Type"];
- if(o!=null)
- return (ValidationDataType)o;
- return ValidationDataType.String;
- }
- set
- {
- if(!System.Enum.IsDefined(typeof(ValidationDataType), value))
- throw new ArgumentException();
- ViewState["Type"] = value;
- }
- }
-
- protected static int CutoffYear
- {
- get
- {
- return DateTimeFormatInfo.CurrentInfo.Calendar.TwoDigitYearMax;
- }
- }
- protected static int GetFullYear(int shortYear)
- {
- //TODO: Implement me
- }
-
- protected override void AddAttributesToRender(HtmlTextWriter writer)
- {
- /*
- ValidationDataType vdt;
- NumberFormatInfo nfi;
- DateTime dt;
- */
- base.AddAttributesToRender(writer);
- if(base.RenderUplevel)
- {
- // TODO: The Lost World
- }
- }
- }
- }
|