ValidationSummary.EnableClientScript 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定值,指出 ValidationSummary 控制項是否使用用戶端指令碼自行更新。
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
屬性值
如果 ValidationSummary 控制項使用用戶端指令碼自行更新,則為 true
,否則為 false
。 預設為 true
。
- 屬性
範例
下列程式代碼範例示範如何使用 EnableClientScript 屬性來防止 ValidationSummary 控件使用用戶端腳本來更新本身。
<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"/>
備註
使用這個屬性可指定控制項是否 ValidationSummary 使用用戶端腳本自行更新。 當此屬性設定為 true
時,如果瀏覽器支援該功能,用戶端腳本就會在用戶端上轉譯以更新 ValidationSummary 控制件。 當此屬性設定為 false
時,用戶端腳本不會在用戶端上轉譯,而且 ValidationSummary 控件只會在往返伺服器時自行更新。 在此情況下, ShowMessageBox 屬性沒有任何作用。
這個屬性無法由佈景主題或樣式表主題設定。 如需詳細資訊,請參閱 ThemeableAttribute 和 ASP.NET 主題和外觀。