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.
///