From 2e52ca2ad07ae1c5a849cc7fa35d2386b580870d Mon Sep 17 00:00:00 2001 From: eeichinger Date: Wed, 14 Jan 2009 16:10:00 +0000 Subject: [PATCH] fixed SPRNET-1151 --- src/Spring/Spring.Web/Web/UI/Page.cs | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/src/Spring/Spring.Web/Web/UI/Page.cs b/src/Spring/Spring.Web/Web/UI/Page.cs index a8b8c315..640ca140 100644 --- a/src/Spring/Spring.Web/Web/UI/Page.cs +++ b/src/Spring/Spring.Web/Web/UI/Page.cs @@ -1208,6 +1208,25 @@ namespace Spring.Web.UI #region Validation support + /// + ///Instructs any validation controls included on the page to validate their assigned information. + /// + /// + public override void Validate() + { + base.Validate(); + } + + /// + ///Instructs the validation controls in the specified validation group to validate their assigned information. + /// + /// + ///The validation group name of the controls to validate. + public override void Validate(string validationGroup) + { + base.Validate(validationGroup); + } + /// /// Evaluates specified validators and returns True if all of them are valid. ///