共用方式為


ValidationSummary.BackLabel 屬性

定義

取得或設定驗證摘要的字串,此摘要連結到包含錯誤的表單。 預設值是 Empty。 這個 API 已經過時。 如需如何開發 ASP.NET 行動應用程式的資訊,請參閱 具有 ASP.NET 的Mobile Apps & Sites

public:
 property System::String ^ BackLabel { System::String ^ get(); void set(System::String ^ value); };
[System.ComponentModel.Bindable(true)]
public string BackLabel { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.BackLabel : string with get, set
Public Property BackLabel As String

屬性值

驗證摘要的字串,此摘要連結到包含錯誤的表單。

屬性

範例

下列程式代碼範例示範如何使用 BackLabel 屬性來指定 中的 ValidationSummary 連結文字,以傳回含有錯誤的表單。

private void OnCmdClick(Object sender, EventArgs e)
{
    if (Page.IsValid)
        ActiveForm = Form2;
    else
    {
        ValSummary.BackLabel = "Return to Form";
        ActiveForm = Form3;
    }
}
Private Sub OnCmdClick(ByVal sender As Object, ByVal e As EventArgs)
    If Page.IsValid Then
        ActiveForm = Form2
    Else
        ValSummary.BackLabel = "Return to Form"
        ActiveForm = Form3
    End If
End Sub

備註

當窗體轉譯期間發生錯誤時,驗證程式會使用 屬性中的 BackLabel 文字做為驗證摘要頁面上顯示的字串。

適用於

另請參閱