ValidationSummary.BackLabel プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
エラーが発生したフォームへのリンクを示すために検証要約内で使用する文字列を取得または設定します。 既定値は Empty です。 この API は、互換性のために残されています。 ASP.NET モバイル アプリケーションを開発する方法については、「mobile Apps & Sites with ASP.NET」を参照してください。
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 検証の概要ページに表示される文字列として使用されます。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET