* ValidationSammary.cs: fixed: control is rendered even if there is no validators on the page. important if the page contain a client side script that refer to the id of the validation summary div. svn path=/trunk/mcs/; revision=72078
@@ -1,3 +1,10 @@
+2007-02-01 Igor Zelmanovich <[email protected]>
+
+ * ValidationSammary.cs: fixed:
+ control is rendered even if there is no validators on the page.
+ important if the page contain a client side script that refer to the
+ id of the validation summary div.
2007-01-31 Igor Zelmanovich <[email protected]>
* CheckBoxList.cs:
@@ -228,9 +228,6 @@ namespace System.Web.UI.WebControls {
#else
validators = Page.Validators;
#endif
- if (validators.Count == 0) {
- return;
- }
// We have validators
errors = new ArrayList(validators.Count);