PasswordRecovery.SuccessTemplate プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
PasswordRecovery コントロールの正常に完了ビューを表示するために使用するテンプレートを取得または設定します。
public:
virtual property System::Web::UI::ITemplate ^ SuccessTemplate { System::Web::UI::ITemplate ^ get(); void set(System::Web::UI::ITemplate ^ value); };
[System.ComponentModel.Browsable(false)]
[System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)]
[System.Web.UI.TemplateContainer(typeof(System.Web.UI.WebControls.PasswordRecovery))]
public virtual System.Web.UI.ITemplate SuccessTemplate { get; set; }
[<System.ComponentModel.Browsable(false)>]
[<System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)>]
[<System.Web.UI.TemplateContainer(typeof(System.Web.UI.WebControls.PasswordRecovery))>]
member this.SuccessTemplate : System.Web.UI.ITemplate with get, set
Public Overridable Property SuccessTemplate As ITemplate
プロパティ値
正常に完了ビューに ITemplate コントロールを表示するためのテンプレートを格納している PasswordRecovery。 既定値は、null
です。
- 属性
例
次のコード例は、[成功] ビューの既定のテンプレートを示しています。
<%@ page language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>ASP.NET Example</title>
</head>
<body>
<form id="form1" runat="server">
<asp:passwordrecovery id="PasswordRecovery1" runat="server">
<successtemplate>
<table border="0">
<tr>
<td>Your password has been sent to you.</td>
</tr>
</table>
</successtemplate>
</asp:passwordrecovery>
</form>
</body>
</html>
<%@ page language="VB" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>ASP.NET Example</title>
</head>
<body>
<form id="form1" runat="server">
<asp:passwordrecovery id="PasswordRecovery1" runat="server">
<successtemplate>
<table border="0">
<tr>
<td>Your password has been sent to you.</td>
</tr>
</table>
</successtemplate>
</asp:passwordrecovery>
</form>
</body>
</html>
注釈
SuccessTemplateプロパティには、成功ビューでのコントロールの外観を定義するテンプレートがPasswordRecovery含まれています。
成功ビュー テンプレートには必須または省略可能な PasswordRecovery フィールドはありません。
テンプレートを使用して成功ビューの外観を定義する場合、コントロールの動作に影響するのは次のプロパティのみです。
から WebControl 継承されたすべてのプロパティ (コントロール メンバー テーブルを PasswordRecovery 参照)。
コントロールの [成功] ビューにテンプレートを使用すると、その他のすべてのプロパティは PasswordRecovery 非アクティブになります。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET