ValidationSummary.EnableClientScript Propriedade
Definição
Obtém ou define um valor que indica se o controle ValidationSummary atualiza a si mesmo usando o script do lado do cliente.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
Valor da propriedade
true se o controle ValidationSummary atualizar a si mesmo usando o script do lado do cliente; caso contrário, false.true if the ValidationSummary control updates itself using client-side script; otherwise, false. O padrão é true.The default is true.
- Atributos
Exemplos
O exemplo de código a seguir demonstra como usar a EnableClientScript propriedade para impedir que o controle use o ValidationSummary script do lado do cliente para se atualizar.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"/>
Comentários
Use essa propriedade para especificar se o ValidationSummary controle se atualiza usando o script do lado do cliente.Use this property to specify whether the ValidationSummary control updates itself using client-side script. Quando essa propriedade é definida como true , o script do lado do cliente é renderizado no cliente para atualizar o ValidationSummary controle, se o navegador der suporte a esse recurso.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. Quando essa propriedade é definida como false , nenhum script do lado do cliente é renderizado no cliente e o ValidationSummary controle só se atualiza em viagens de ida e volta ao servidor.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. Nessa situação, a ShowMessageBox propriedade não tem nenhum efeito.In this situation, the ShowMessageBox property has no effect.
Esta propriedade não pode ser definida por temas ou temas de folha de estilo.This property cannot be set by themes or style sheet themes. Para obter mais informações, consulte ThemeableAttribute e temas e capas do ASP.net.For more information, see ThemeableAttribute and ASP.NET Themes and Skins.