ValidationSummary.EnableClientScript Property

Definition

Gets or sets a value indicating whether the ValidationSummary control updates itself using client-side script.

public:
 property bool EnableClientScript { bool get(); void set(bool value); };
public bool EnableClientScript { get; set; }
[System.Web.UI.Themeable(false)]
public bool EnableClientScript { get; set; }
member this.EnableClientScript : bool with get, set
[<System.Web.UI.Themeable(false)>]
member this.EnableClientScript : bool with get, set
Public Property EnableClientScript As Boolean

Property Value

true if the ValidationSummary control updates itself using client-side script; otherwise, false. The default is true.

Attributes

Examples

The following code example demonstrates how to use the EnableClientScript property to prevent the ValidationSummary control from using client-side script to update itself.


<asp:ValidationSummary 
     id="valSum" 
     DisplayMode="BulletList"
     EnableClientScript="false"
     ShowMessageBox="false"
     ShowSummary="true" 
     HeaderText="You must enter a value in the following fields:"
     Font-Names="verdana" 
     Font-Size="12"
     runat="server"/>

<asp:ValidationSummary 
     id="valSum" 
     DisplayMode="BulletList"
     EnableClientScript="false"
     ShowMessageBox="false"
     ShowSummary="true" 
     HeaderText="You must enter a value in the following fields:"
     Font-Names="verdana" 
     Font-Size="12"
     runat="server"/>

Remarks

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 ASP.NET Themes and Skins.

Applies to

See also