ValidationSummary.EnableClientScript Property
.NET Framework 3.0
Gets or sets a value indicating whether the ValidationSummary control updates itself using client-side script.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
[ThemeableAttribute(false)] public: property bool EnableClientScript { bool get (); void set (bool value); }
/** @property */ public boolean get_EnableClientScript () /** @property */ public void set_EnableClientScript (boolean value)
public function get EnableClientScript () : boolean public function set EnableClientScript (value : boolean)
Not applicable.
Property Value
true if the ValidationSummary control updates itself using client-side script; otherwise, false. The default is true.Use this property to specify whether the ValidationSummary control updates itself using client-side script. When this property is set to true, client-side script is rendered on the client to update the ValidationSummary control, if the browser supports that feature. When this property is set to false, no client-side script is rendered on the client and the ValidationSummary control only updates itself on round trips to the server. In this situation, the ShowMessageBox property has no effect.
This property cannot be set by themes or style sheet themes. For more information, see ThemeableAttribute and Introduction to ASP.NET Themes.
Community Additions
ADD
Show: