ValidationSummary.BackLabel プロパティ
アセンブリ: System.Web.Mobile (system.web.mobile.dll 内)

Dim instance As ValidationSummary Dim value As String value = instance.BackLabel instance.BackLabel = value
[BindableAttribute(true)] public: property String^ BackLabel { String^ get (); void set (String^ value); }
/** @property */ public String get_BackLabel () /** @property */ public void set_BackLabel (String value)
エラーが発生したフォームへのリンクを示すために検証要約内で使用する文字列。


BackLabel プロパティを使用して、ValidationSummary からエラー発生元のフォームに戻るリンク テキストを指定する方法を次のコード例に示します。
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
private void OnCmdClick(Object sender, EventArgs e) { if (Page.IsValid) ActiveForm = Form2; else { ValSummary.BackLabel = "Return to Form"; ActiveForm = Form3; } }

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からValidationSummary.BackLabel プロパティを検索する場合は、下記のリンクをクリックしてください。

- ValidationSummary.BackLabel プロパティのページへのリンク