| 123456789101112131415161718192021 |
- //
- // System.Web.UI.IValidator.cs
- //
- // Author:
- // Bob Smith <[email protected]>
- //
- // (C) Bob Smith
- //
- using System;
- using System.Web;
- namespace System.Web.UI
- {
- public interface IValidator
- {
- void Validate();
- string ErrorMessage {get; set;}
- bool IsValid {get; set;}
- }
- }
|