ValidationCompareOperator.cs 442 B

123456789101112131415161718192021222324
  1. /**
  2. * Namespace: System.Web.UI.WebControls
  3. * Enumeration: ValidationCompareOperator
  4. *
  5. * Author: Gaurav Vaish
  6. * Contact: <[email protected]>, <[email protected]>
  7. * Status: 100%
  8. *
  9. * (C) Gaurav Vaish (2001)
  10. */
  11. namespace System.Web.UI.WebControls
  12. {
  13. public enum ValidationCompareOperator
  14. {
  15. Equal,
  16. NotEqual,
  17. GreaterThan,
  18. GreaterThanEqual,
  19. LessThan,
  20. LessThenEqual,
  21. DataTypeCheck
  22. }
  23. }