CreateUserWizard 类
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
提供用于创建新网站用户帐户的用户界面。
public ref class CreateUserWizard : System::Web::UI::WebControls::Wizard
[System.ComponentModel.Bindable(false)]
public class CreateUserWizard : System.Web.UI.WebControls.Wizard
[<System.ComponentModel.Bindable(false)>]
type CreateUserWizard = class
inherit Wizard
Public Class CreateUserWizard
Inherits Wizard
- 继承
- 属性
示例
第一个代码示例演示如何以基本形式使用 CreateUserWizard 控件。 此页面将使用网站的默认 MembershipProvider 对象创建新的网站用户帐户。
<%@ 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>CreateUserWizard basic sample</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:createuserwizard id="Createuserwizard1" runat="server" >
</asp:createuserwizard>
</div>
</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>CreateUserWizard basic sample</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:createuserwizard id="Createuserwizard1" runat="server" >
</asp:createuserwizard>
</div>
</form>
</body>
</html>
第二个代码示例演示如何将 CreateUserWizard 控件与默认模板一起使用。
重要
此示例具有一个接受用户输入的文本框,这是一个潜在的安全威胁。 默认情况下,ASP.NET 网页验证用户输入是否不包含脚本或 HTML 元素。 有关详细信息,请参阅脚本侵入概述。
<%@ 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>CreateUserWizard Sample</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:createuserwizard id="Createuserwizard1" runat="server">
<wizardsteps>
<asp:createuserwizardstep runat="server" title="Sign Up for Your New Account">
<contenttemplate>
<table border="0">
<tr>
<td>
<table border="0" style="height: 100%; width: 100%;">
<tr>
<td align="center" colspan="2">
Sign Up for Your New Account</td>
</tr>
<tr>
<td align="right">
<asp:label runat="server" associatedcontrolid="UserName" id="UserNameLabel">
User Name:</asp:label></td>
<td>
<asp:textbox runat="server" id="UserName"></asp:textbox>
<asp:requiredfieldvalidator runat="server" controltovalidate="UserName" tooltip="User Name is required."
id="UserNameRequired" validationgroup="Createuserwizard1" errormessage="User Name is required.">
*</asp:requiredfieldvalidator>
</td>
</tr>
<tr>
<td align="right">
<asp:label runat="server" associatedcontrolid="Password" id="PasswordLabel">
Password:</asp:label></td>
<td>
<asp:textbox runat="server" textmode="Password" id="Password"></asp:textbox>
<asp:requiredfieldvalidator runat="server" controltovalidate="Password" tooltip="Password is required."
id="PasswordRequired" validationgroup="Createuserwizard1" errormessage="Password is required.">
*</asp:requiredfieldvalidator>
</td>
</tr>
<tr>
<td align="right">
<asp:label runat="server" associatedcontrolid="ConfirmPassword" id="ConfirmPasswordLabel">
Confirm Password:</asp:label></td>
<td>
<asp:textbox runat="server" textmode="Password" id="ConfirmPassword"></asp:textbox>
<asp:requiredfieldvalidator runat="server" controltovalidate="ConfirmPassword" tooltip="Confirm Password is required."
id="ConfirmPasswordRequired" validationgroup="Createuserwizard1" errormessage="Confirm Password is required.">
*</asp:requiredfieldvalidator>
</td>
</tr>
<tr>
<td align="right">
<asp:label runat="server" associatedcontrolid="Email" id="EmailLabel">
Email:</asp:label></td>
<td>
<asp:textbox runat="server" id="Email"></asp:textbox>
<asp:requiredfieldvalidator runat="server" controltovalidate="Email" tooltip="Email is required."
id="EmailRequired" validationgroup="Createuserwizard1" errormessage="Email is required.">
*</asp:requiredfieldvalidator>
</td>
</tr>
<tr>
<td align="right">
<asp:label runat="server" associatedcontrolid="Question" id="QuestionLabel">
Security Question:</asp:label></td>
<td>
<asp:textbox runat="server" id="Question"></asp:textbox>
<asp:requiredfieldvalidator runat="server" controltovalidate="Question" tooltip="Security question is required."
id="QuestionRequired" validationgroup="Createuserwizard1" errormessage="Security question is required.">
*</asp:requiredfieldvalidator>
</td>
</tr>
<tr>
<td align="right">
<asp:label runat="server" associatedcontrolid="Answer" id="AnswerLabel">
Security Answer:</asp:label></td>
<td>
<asp:textbox runat="server" id="Answer"></asp:textbox>
<asp:requiredfieldvalidator runat="server" controltovalidate="Answer" tooltip="Security answer is required."
id="AnswerRequired" validationgroup="Createuserwizard1" errormessage="Security answer is required.">
*</asp:requiredfieldvalidator>
</td>
</tr>
<tr>
<td align="center" colspan="2">
<asp:comparevalidator runat="server" display="Dynamic" errormessage="The Password and Confirmation Password must match."
controltocompare="ConfirmPassword" controltovalidate="Password" id="PasswordCompare"
validationgroup="Createuserwizard1">
</asp:comparevalidator>
</td>
</tr>
<tr>
<td align="center" colspan="2" style="color: Red;">
<asp:literal runat="server" enableviewstate="False" id="FailureText">
</asp:literal>
</td>
</tr>
</table>
</td>
</tr>
</table>
</contenttemplate>
</asp:createuserwizardstep>
<asp:completewizardstep runat="server" title="Complete">
<contenttemplate>
<table border="0">
<tr>
<td>
<table border="0" style="height: 100%; width: 100%;">
<tr>
<td align="center" colspan="2">
Complete</td>
</tr>
<tr>
<td>
Your account has been successfully created.</td>
</tr>
<tr>
<td align="right" colspan="2">
<asp:button runat="server" validationgroup="Createuserwizard1" commandname="Continue"
id="ContinueButton" causesvalidation="False" text="Continue" />
</td>
</tr>
</table>
</td>
</tr>
</table>
</contenttemplate>
</asp:completewizardstep>
</wizardsteps>
</asp:createuserwizard>
</div>
</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>CreateUserWizard sample</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:createuserwizard id="Createuserwizard1" runat="server">
<wizardsteps>
<asp:createuserwizardstep runat="server" title="Sign Up for Your New Account">
<contenttemplate>
<table border="0">
<tr>
<td>
<table border="0" style="height: 100%; width: 100%;">
<tr>
<td align="center" colspan="2">
Sign Up for Your New Account</td>
</tr>
<tr>
<td align="right">
<asp:label runat="server" associatedcontrolid="UserName" id="UserNameLabel">
User Name:</asp:label></td>
<td>
<asp:textbox runat="server" id="UserName"></asp:textbox>
<asp:requiredfieldvalidator runat="server" controltovalidate="UserName" tooltip="User Name is required."
id="UserNameRequired" validationgroup="Createuserwizard1" errormessage="User Name is required.">
*</asp:requiredfieldvalidator>
</td>
</tr>
<tr>
<td align="right">
<asp:label runat="server" associatedcontrolid="Password" id="PasswordLabel">
Password:</asp:label></td>
<td>
<asp:textbox runat="server" textmode="Password" id="Password"></asp:textbox>
<asp:requiredfieldvalidator runat="server" controltovalidate="Password" tooltip="Password is required."
id="PasswordRequired" validationgroup="Createuserwizard1" errormessage="Password is required.">
*</asp:requiredfieldvalidator>
</td>
</tr>
<tr>
<td align="right">
<asp:label runat="server" associatedcontrolid="ConfirmPassword" id="ConfirmPasswordLabel">
Confirm Password:</asp:label></td>
<td>
<asp:textbox runat="server" textmode="Password" id="ConfirmPassword"></asp:textbox>
<asp:requiredfieldvalidator runat="server" controltovalidate="ConfirmPassword" tooltip="Confirm Password is required."
id="ConfirmPasswordRequired" validationgroup="Createuserwizard1" errormessage="Confirm Password is required.">
*</asp:requiredfieldvalidator>
</td>
</tr>
<tr>
<td align="right">
<asp:label runat="server" associatedcontrolid="Email" id="EmailLabel">
Email:</asp:label></td>
<td>
<asp:textbox runat="server" id="Email"></asp:textbox>
<asp:requiredfieldvalidator runat="server" controltovalidate="Email" tooltip="Email is required."
id="EmailRequired" validationgroup="Createuserwizard1" errormessage="Email is required.">
*</asp:requiredfieldvalidator>
</td>
</tr>
<tr>
<td align="right">
<asp:label runat="server" associatedcontrolid="Question" id="QuestionLabel">
Security Question:</asp:label></td>
<td>
<asp:textbox runat="server" id="Question"></asp:textbox>
<asp:requiredfieldvalidator runat="server" controltovalidate="Question" tooltip="Security question is required."
id="QuestionRequired" validationgroup="Createuserwizard1" errormessage="Security question is required.">
*</asp:requiredfieldvalidator>
</td>
</tr>
<tr>
<td align="right">
<asp:label runat="server" associatedcontrolid="Answer" id="AnswerLabel">
Security Answer:</asp:label></td>
<td>
<asp:textbox runat="server" id="Answer"></asp:textbox>
<asp:requiredfieldvalidator runat="server" controltovalidate="Answer" tooltip="Security answer is required."
id="AnswerRequired" validationgroup="Createuserwizard1" errormessage="Security answer is required.">
*</asp:requiredfieldvalidator>
</td>
</tr>
<tr>
<td align="center" colspan="2">
<asp:comparevalidator runat="server" display="Dynamic" errormessage="The Password and Confirmation Password must match."
controltocompare="ConfirmPassword" controltovalidate="Password" id="PasswordCompare"
validationgroup="Createuserwizard1">
</asp:comparevalidator>
</td>
</tr>
<tr>
<td align="center" colspan="2" style="color: Red;">
<asp:literal runat="server" enableviewstate="False" id="FailureText">
</asp:literal>
</td>
</tr>
</table>
</td>
</tr>
</table>
</contenttemplate>
</asp:createuserwizardstep>
<asp:completewizardstep runat="server" title="Complete">
<contenttemplate>
<table border="0">
<tr>
<td>
<table border="0" style="height: 100%; width: 100%;">
<tr>
<td align="center" colspan="2">
Complete</td>
</tr>
<tr>
<td>
Your account has been successfully created.</td>
</tr>
<tr>
<td align="right" colspan="2">
<asp:button runat="server" validationgroup="Createuserwizard1" commandname="Continue"
id="ContinueButton" causesvalidation="False" text="Continue" />
</td>
</tr>
</table>
</td>
</tr>
</table>
</contenttemplate>
</asp:completewizardstep>
</wizardsteps>
</asp:createuserwizard>
</div>
</form>
</body>
</html>
第三个代码示例向 控件添加一个附加步骤 CreateUserWizard , CreatedUser 并使用 事件将用户的名字和姓氏存储在个性化属性中。 该代码示例需要 Web.config 文件中的以下条目。
<configuration>
<system.web>
<profile>
<properties>
<add name="userName" />
</properties>
</profile>
</system.web>
</configuration>
重要
此示例具有一个接受用户输入的文本框,这是一个潜在的安全威胁。 默认情况下,ASP.NET 网页验证用户输入是否不包含脚本或 HTML 元素。 有关详细信息,请参阅脚本侵入概述。
<%@ 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">
void CreateUserWizard1_CreatedUser(object sender, EventArgs e)
{
Profile.SetPropertyValue("userName",firstName.Text + " " + lastName.Text);
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>
CreateUserWizard.CreatedUser sample</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:createuserwizard id="CreateUserWizard1"
oncreateduser="CreateUserWizard1_CreatedUser"
runat="server">
<wizardsteps>
<asp:wizardstep runat="server" steptype="Start" title="Identification">
Tell us your name:<br />
<table width="100%">
<tr>
<td>
First name:</td>
<td>
<asp:textbox id="firstName" runat="server" /></td>
</tr>
<tr>
<td>
Last name:</td>
<td>
<asp:textbox id="lastName" runat="server" /></td>
</tr>
</table>
</asp:wizardstep>
<asp:createuserwizardstep runat="server" title="Sign Up for Your New Account">
</asp:createuserwizardstep>
</wizardsteps>
</asp:createuserwizard>
</div>
</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">
Sub CreateUserWizard1_CreatedUser(ByVal sender As Object, ByVal e As System.EventArgs)
Profile.SetPropertyValue("userName", firstName.Text & " " & lastName.Text)
End Sub
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>
CreateUserWizard.CreatedUser sample</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:createuserwizard id="CreateUserWizard1"
oncreateduser="CreateUserWizard1_CreatedUser"
runat="server">
<wizardsteps>
<asp:wizardstep runat="server" steptype="Start" title="Identification">
Tell us your name:<br />
<table width="100%">
<tr>
<td>
First name:</td>
<td>
<asp:textbox id="firstName" runat="server" /></td>
</tr>
<tr>
<td>
Last name:</td>
<td>
<asp:textbox id="lastName" runat="server" /></td>
</tr>
</table>
</asp:wizardstep>
<asp:createuserwizardstep runat="server" title="Sign Up for Your New Account">
</asp:createuserwizardstep>
</wizardsteps>
</asp:createuserwizard>
</div>
</form>
</body>
</html>
注解
本主题内容:
介绍
控件 CreateUserWizard 为 对象提供用户界面 MembershipProvider ,该对象与网站的用户数据存储进行通信,以在数据存储区中创建新用户帐户。 依赖于 CreateUserWizardMembershipProvider 创建用户,并在必要时禁用它们。
注意
如果不熟悉 ASP.NET 登录控件,在继续操作之前,可能会发现 阅读 ASP.NET 登录控件概述 很有帮助。 有关与登录控件和成员身份相关的其他主题的列表,请参阅 使用成员身份管理用户。
默认情况下,控件 CreateUserWizard 将接受来自网站访问者的用户名和密码。 根据站点 MembershipProvider 对象的要求, CreateUserWizard 控件可以选择性地接受由 属性表示 Email 的电子邮件地址,以及由 Question 和 Answer表示的密码恢复确认问题和答案。 有关显示 的所有必需控件和可选控件的 CreateUserWizard表,请参阅 CreateUserStep。
重要
如果 AutoGeneratePassword 设置为 true
,并且 PasswordStrengthRegularExpression 属性在应用程序的 Web.config 文件中设置,则可能会生成未通过正则表达式强度测试的密码。 在这种情况下,创建用户将引发指示密码无效的错误。
创建用户
使用 CreateUserWizard创建用户时,控件与当前 MembershipProvider 交互以按顺序完成以下任务。
如果 AutoGeneratePassword 设置为
true
,则创建密码。在 表示的数据存储 MembershipProvider 中创建用户。
如果 DisableCreatedUser 属性设置为
true
,则禁用存储区中的用户。
可以通过添加其他字段或在 和 CompleteStep 属性中CreateUserStep提供的模板之前或之后添加其他步骤来扩展CreateUserWizard控件以接受其他信息。
注意
步骤 CreateUserWizardStep 是控件中的 CreateUserWizard 第一个步骤,是必需步骤。 默认情况下, AllowReturn 属性设置为 false
,以阻止用户返回到 CreateUserWizardStep 步骤并意外尝试使用相同凭据创建另一个用户帐户。 如果 EnableViewState 设置为 false
,则 AllowReturn 不会在视图状态中维护 属性,并且必须在应用程序中包括逻辑才能维护 AllowReturn 值。
CreateUserWizard 可在页面生命周期的所有阶段访问由文本框(如 ) UserName表示的控件属性。 控件将选取最终用户通过文本框引发的事件 TextChanged 所做的任何更改。
如果已将 SMTP 邮件服务器配置为发送电子邮件,控件 CreateUserWizard 可以选择向新用户发送电子邮件。 有关更多信息,请参见 MailDefinition 属性。
注意
控件 CreateUserWizard 使用 Internet 电子邮件服务向用户发送登录信息。 通过电子邮件发送密码存在固有的安全风险。 您应该确定站点是否可以接受这些安全风险。
样式和模板
CreateUserWizard如果未使用模板自定义控件,则AccessKeyCreateUserWizard控件的 属性将应用于控件中的第一个文本框和 TabIndex 属性,该属性将应用于控件的所有文本框。 CreateUserWizard如果使用模板自定义控件,AccessKey则会忽略 属性和 TabIndex 属性。 在这种情况下,直接设置 AccessKey 每个模板子控件的 属性和 TabIndex 属性。
CreateUserWizard 可在页面生命周期的所有阶段访问由文本框表示的控件属性(如 UserName 和 Password)。 控件将选取最终用户通过文本框引发的事件 TextChanged 所做的任何更改。
注意
AutoGeneratePassword设置 、 MembershipProvider或 RequireEmail 属性会重新创建控件的CreateUserWizard子控件,并且其控件状态在进程中丢失。 若要避免这种情况,请显式维护控件的子控件的 CreateUserWizard 控件状态,或避免将控件放入模板中。
下表列出了 CreateUserWizard 控件样式属性,并说明了每个样式属性影响的 UI 元素。 有关每种样式适用的属性的列表,请参阅各个样式属性的文档。
Style 属性 | 受影响的 UI 元素 |
---|---|
ContinueButtonStyle | “继续 ”按钮。 |
CreateUserButtonStyle | “创建用户 ”按钮。 |
HyperLinkStyle | 指向其他页面的链接。 |
InstructionTextStyle | 页面上告知用户如何使用控件的说明性文本。 |
LabelStyle | 所有输入字段(如文本框)的标签。 |
TextBoxStyle | 文本输入输入字段。 |
TitleTextStyle | 每个视图的标题文本。 |
CompleteSuccessTextStyle | 密码恢复或重置尝试成功时向用户显示的文本。 |
ErrorMessageStyle | 成员资格提供程序无法创建新用户帐户时的错误消息。 |
PasswordHintStyle | 描述密码要求的文本。 |
ValidatorTextStyle | 与验证关联的错误消息。 |
验证分组
控件 CreateUserWizard 使用验证组,以便可以单独验证控件所在的同一页上 CreateUserWizard 的其他字段。 默认情况下, ID 控件的 CreateUserWizard 属性用作验证组的名称。 例如,ID 为 CreateUserWizard “CreateUserWizard1”的控件将使用验证组名称“CreateUserWizard1”。 如果要设置控件所属的验证组 CreateUserWizard ,则必须对控件进行模板化并更改验证组名称。
请注意, CreateUserWizard 类继承自 Wizard 类,该类不支持对非标准模式或怪癖模式进行特殊 Microsoft Internet Explorer 呈现。 CreateUserWizard不会尝试优化非标准 Internet Explorer 模式的呈现。 若要使用 CreateUserWizard 控件获得最佳 Internet Explorer 呈现效果,请使用 XHTML 文档类型,该类型默认在 Visual Web Developer 和 Visual Studio 中添加。
使用布局模板设置格式
控件 CreateUserWizard 允许你指定控件的布局,而无需使用 HTML table
元素。 相反,可以使用 LayoutTemplate
元素来指定布局。 在布局模板中,创建占位符控件以指示应在控件中动态插入项的位置。 (这类似于控件的模板模型 ListView 的工作原理。) 有关详细信息,请参阅 Wizard.LayoutTemplate 属性。
可访问性
有关如何配置此控件以便生成符合辅助功能标准的标记的信息,请参阅 Visual Studio 中的辅助功能和 ASP.NET 和 ASP.NET 控件和辅助功能。
声明性语法
<asp:CreateUserWizard
AccessKey="string"
ActiveStepIndex="integer"
Answer="string"
AnswerLabelText="string"
AnswerRequiredErrorMessage="string"
AutoGeneratePassword="True|False"
BackColor="color name|#dddddd"
BorderColor="color name|#dddddd"
BorderStyle="NotSet|None|Dotted|Dashed|Solid|Double|Groove|Ridge|
Inset|Outset"
BorderWidth="size"
CancelButtonImageUrl="uri"
CancelButtonText="string"
CancelButtonType="Button|Image|Link"
CancelDestinationPageUrl="uri"
CellPadding="integer"
CellSpacing="integer"
CompleteSuccessText="string"
ConfirmPasswordCompareErrorMessage="string"
ConfirmPasswordLabelText="string"
ConfirmPasswordRequiredErrorMessage="string"
ContinueButtonImageUrl="uri"
ContinueButtonText="string"
ContinueButtonType="Button|Image|Link"
ContinueDestinationPageUrl="uri"
CreateUserButtonImageUrl="uri"
CreateUserButtonText="string"
CreateUserButtonType="Button|Image|Link"
CssClass="string"
DisableCreatedUser="True|False"
DisplayCancelButton="True|False"
DisplaySideBar="True|False"
DuplicateEmailErrorMessage="string"
DuplicateUserNameErrorMessage="string"
EditProfileIconUrl="uri"
EditProfileText="string"
EditProfileUrl="uri"
Email="string"
EmailLabelText="string"
EmailRegularExpression="string"
EmailRegularExpressionErrorMessage="string"
EmailRequiredErrorMessage="string"
Enabled="True|False"
EnableTheming="True|False"
EnableViewState="True|False"
FinishCompleteButtonImageUrl="uri"
FinishCompleteButtonText="string"
FinishCompleteButtonType="Button|Image|Link"
FinishDestinationPageUrl="uri"
FinishPreviousButtonImageUrl="uri"
FinishPreviousButtonText="string"
FinishPreviousButtonType="Button|Image|Link"
Font-Bold="True|False"
Font-Italic="True|False"
Font-Names="string"
Font-Overline="True|False"
Font-Size="string|Smaller|Larger|XX-Small|X-Small|Small|Medium|
Large|X-Large|XX-Large"
Font-Strikeout="True|False"
Font-Underline="True|False"
ForeColor="color name|#dddddd"
HeaderText="string"
Height="size"
HelpPageIconUrl="uri"
HelpPageText="string"
HelpPageUrl="uri"
ID="string"
InstructionText="string"
InvalidAnswerErrorMessage="string"
InvalidEmailErrorMessage="string"
InvalidPasswordErrorMessage="string"
InvalidQuestionErrorMessage="string"
LoginCreatedUser="True|False"
MailDefinition-BodyFileName="uri"
MailDefinition-CC="string"
MailDefinition-From="string"
MailDefinition-IsBodyHtml="True|False"
MailDefinition-Priority="Normal|Low|High"
MailDefinition-Subject="string"
MembershipProvider="string"
OnActiveStepChanged="ActiveStepChanged event handler"
OnCancelButtonClick="CancelButtonClick event handler"
OnContinueButtonClick="ContinueButtonClick event handler"
OnCreatedUser="CreatedUser event handler"
OnCreateUserError="CreateUserError event handler"
OnCreatingUser="CreatingUser event handler"
OnDataBinding="DataBinding event handler"
OnDisposed="Disposed event handler"
OnFinishButtonClick="FinishButtonClick event handler"
OnInit="Init event handler"
OnLoad="Load event handler"
OnNextButtonClick="NextButtonClick event handler"
OnPreRender="PreRender event handler"
OnPreviousButtonClick="PreviousButtonClick event handler"
OnSendingMail="SendingMail event handler"
OnSendMailError="SendMailError event handler"
OnSideBarButtonClick="SideBarButtonClick event handler"
OnUnload="Unload event handler"
PasswordHintText="string"
PasswordLabelText="string"
PasswordRegularExpression="string"
PasswordRegularExpressionErrorMessage="string"
PasswordRequiredErrorMessage="string"
Question="string"
QuestionLabelText="string"
QuestionRequiredErrorMessage="string"
RequireEmail="True|False"
runat="server"
SkinID="string"
SkipLinkText="string"
StartNextButtonImageUrl="uri"
StartNextButtonText="string"
StartNextButtonType="Button|Image|Link"
StepNextButtonImageUrl="uri"
StepNextButtonText="string"
StepNextButtonType="Button|Image|Link"
StepPreviousButtonImageUrl="uri"
StepPreviousButtonText="string"
StepPreviousButtonType="Button|Image|Link"
Style="string"
TabIndex="integer"
ToolTip="string"
UnknownErrorMessage="string"
UserName="string"
UserNameLabelText="string"
UserNameRequiredErrorMessage="string"
Visible="True|False"
Width="size"
>
<CancelButtonStyle/>
<CompleteSuccessTextStyle/>
<ContinueButtonStyle/>
<CreateUserButtonStyle/>
<ErrorMessageStyle/>
<FinishCompleteButtonStyle/>
<FinishNavigationTemplate>
<!-- child controls -->
</FinishNavigationTemplate>
<FinishPreviousButtonStyle/>
<HeaderStyle/>
<HeaderTemplate>
<!-- child controls -->
</HeaderTemplate>
<HyperLinkStyle/>
<InstructionTextStyle/>
<LabelStyle/>
<MailDefinition
BodyFileName="uri"
CC="string"
From="string"
IsBodyHtml="True|False"
Priority="Normal|Low|High"
Subject="string"
>
<EmbeddedObjects>
<asp:EmbeddedMailObject
Name="string"
Path="uri"
/>
</EmbeddedObjects>
</MailDefinition>
<NavigationButtonStyle/>
<NavigationStyle/>
<PasswordHintStyle/>
<SideBarButtonStyle/>
<SideBarStyle/>
<SideBarTemplate>
<!-- child controls -->
</SideBarTemplate>
<StartNavigationTemplate>
<!-- child controls -->
</StartNavigationTemplate>
<StartNextButtonStyle/>
<StepNavigationTemplate>
<!-- child controls -->
</StepNavigationTemplate>
<StepNextButtonStyle/>
<StepPreviousButtonStyle/>
<StepStyle/>
<TextBoxStyle/>
<TitleTextStyle/>
<ValidatorTextStyle/>
<WizardSteps>
<asp:TemplatedWizardStep
AllowReturn="True|False"
ContentTemplateContainer="string"
EnableTheming="True|False"
EnableViewState="True|False"
ID="string"
OnActivate="Activate event handler"
OnDataBinding="DataBinding event handler"
OnDeactivate="Deactivate event handler"
OnDisposed="Disposed event handler"
OnInit="Init event handler"
OnLoad="Load event handler"
OnPreRender="PreRender event handler"
OnUnload="Unload event handler"
runat="server"
SkinID="string"
StepType="Auto|Complete|Finish|Start|Step"
Title="string"
Visible="True|False"
>
<ContentTemplate>
<!-- child controls -->
</ContentTemplate>
<CustomNavigationTemplate>
<!-- child controls -->
</CustomNavigationTemplate>
</asp:TemplatedWizardStep>
<asp:WizardStep
AllowReturn="True|False"
EnableTheming="True|False"
EnableViewState="True|False"
ID="string"
OnActivate="Activate event handler"
OnDataBinding="DataBinding event handler"
OnDeactivate="Deactivate event handler"
OnDisposed="Disposed event handler"
OnInit="Init event handler"
OnLoad="Load event handler"
OnPreRender="PreRender event handler"
OnUnload="Unload event handler"
runat="server"
SkinID="string"
StepType="Auto|Complete|Finish|Start|Step"
Title="string"
Visible="True|False"
/>
</WizardSteps>
</asp:CreateUserWizard>
构造函数
CreateUserWizard() |
初始化 CreateUserWizard 类的新实例。 |
字段
ContinueButtonCommandName |
表示创建用户帐户最后一骤中“继续”按钮的 CommandName 值。 ContinueButtonCommandName 字段是只读的。 |
属性
AccessKey |
获取或设置使您得以快速导航到 Web 服务器控件的访问键。 (继承自 WebControl) |
ActiveStep |
获取 WizardSteps 集合中当前显示给用户的步骤。 (继承自 Wizard) |
ActiveStepIndex |
获取或设置当前向用户显示的步骤。 |
Adapter |
获取控件的浏览器特定适配器。 (继承自 Control) |
Answer |
获取或设置最终用户对密码恢复确认问题的答案。 |
AnswerLabelText |
获取或设置用于标识密码确认答案文本框的标签文本。 |
AnswerRequiredErrorMessage |
获取或设置由于用户没有输入密码确认问题的答案而显示的错误消息。 |
AppRelativeTemplateSourceDirectory |
获取或设置包含该控件的 Page 或 UserControl 对象的应用程序相对虚拟目录。 (继承自 Control) |
Attributes |
获取与控件的特性不对应的任意特性(只用于呈现)的集合。 (继承自 WebControl) |
AutoGeneratePassword |
获取或设置用于指示是否自动为新用户帐户生成密码的值。 |
BackColor |
获取或设置 Web 服务器控件的背景色。 (继承自 WebControl) |
BindingContainer |
获取包含该控件的数据绑定的控件。 (继承自 Control) |
BorderColor |
获取或设置 Web 控件的边框颜色。 (继承自 WebControl) |
BorderStyle |
获取或设置 Web 服务器控件的边框样式。 (继承自 WebControl) |
BorderWidth |
获取或设置 Web 服务器控件的边框宽度。 (继承自 WebControl) |
CancelButtonImageUrl |
获取或设置为“取消”按钮显示的图像的 URL。 (继承自 Wizard) |
CancelButtonStyle |
获取对定义“取消”按钮外观的样式属性集合的引用。 (继承自 Wizard) |
CancelButtonText |
获取或设置为“取消”按钮显示的描述文字。 (继承自 Wizard) |
CancelButtonType |
获取或设置呈现为“取消”按钮的按钮类型。 (继承自 Wizard) |
CancelDestinationPageUrl |
获取或设置在用户单击“取消”按钮时将定向到的 URL。 (继承自 Wizard) |
CellPadding |
获取或设置单元格内容和单元格边框之间的空间量。 (继承自 Wizard) |
CellSpacing |
获取或设置单元格间的空间量。 (继承自 Wizard) |
ChildControlsCreated |
获取一个值,该值指示是否已创建服务器控件的子控件。 (继承自 Control) |
ClientID |
获取由 ASP.NET 生成的 HTML 标记的控件 ID。 (继承自 Control) |
ClientIDMode |
获取或设置用于生成 ClientID 属性值的算法。 (继承自 Control) |
ClientIDSeparator |
获取一个字符值,该值表示 ClientID 属性中使用的分隔符字符。 (继承自 Control) |
CompleteStep |
获取对最终用户帐户创建步骤的引用。 |
CompleteSuccessText |
获取或设置网站用户帐户创建成功后所显示的文本。 |
CompleteSuccessTextStyle |
获取一个对属性集合的引用,这些属性用于定义网站用户帐户创建成功后所显示的文本的外观。 |
ConfirmPassword |
获取用户输入的第二个密码。 |
ConfirmPasswordCompareErrorMessage |
获取或设置当用户在密码文本框和确认密码文本框中输入两个不同的密码时所显示的错误消息。 |
ConfirmPasswordLabelText |
获取或设置第二个密码文本框的标签文本。 |
ConfirmPasswordRequiredErrorMessage |
获取或设置当用户将确认密码文本框留空时所显示的错误消息。 |
Context |
为当前 Web 请求获取与服务器控件关联的 HttpContext 对象。 (继承自 Control) |
ContinueButtonImageUrl |
获取或设置创建用户帐户最后一步中“继续”按钮使用的图像的 URL。 |
ContinueButtonStyle |
获取一个对属性集合的引用,这些属性用于定义“继续”按钮的外观。 |
ContinueButtonText |
获取或设置在“继续”按钮上显示的描述文字。 |
ContinueButtonType |
获取或设置呈现为“继续”按钮的按钮类型。 |
ContinueDestinationPageUrl |
获取或设置在用户单击成功页上的“继续”按钮后将看到的页的 URL。 |
Controls |
获取表示 ControlCollection 中的子控件的 CompositeControl 对象。 (继承自 CompositeControl) |
ControlStyle |
获取 Web 服务器控件的样式。 此属性主要由控件开发人员使用。 (继承自 WebControl) |
ControlStyleCreated |
获取一个值,该值指示是否已为 Style 属性创建了 ControlStyle 对象。 此属性主要由控件开发人员使用。 (继承自 WebControl) |
CreateUserButtonImageUrl |
获取或设置为“创建用户”按钮显示的图像的 URL。 |
CreateUserButtonStyle |
获取一个对属性集合的引用,这些属性用于定义“创建用户”按钮的外观。 |
CreateUserButtonText |
获取或设置在“创建用户”按钮上显示的描述文字。 |
CreateUserButtonType |
获取或设置呈现为“创建用户”按钮的按钮类型。 |
CreateUserStep |
获取对用户帐户创建步骤的模板的引用。 |
CssClass |
获取或设置由 Web 服务器控件在客户端呈现的级联样式表 (CSS) 类。 (继承自 WebControl) |
DataItemContainer |
如果命名容器实现 IDataItemContainer,则获取对命名容器的引用。 (继承自 Control) |
DataKeysContainer |
如果命名容器实现 IDataKeysControl,则获取对命名容器的引用。 (继承自 Control) |
DesignMode |
获取一个值,该值指示是否正在使用设计图面上的一个控件。 (继承自 Control) |
DisableCreatedUser |
获取或设置一个值,该值指示是否应允许新用户登录到网站。 |
DisplayCancelButton |
获取或设置一个布尔值,指示是否显示“取消”按钮。 (继承自 Wizard) |
DisplaySideBar |
获取或设置一个值,该值指示是否显示控件的侧栏区域。 |
DuplicateEmailErrorMessage |
获取或设置当用户输入成员资格提供程序中已使用的电子邮件地址时所显示的错误消息。 |
DuplicateUserNameErrorMessage |
获取或设置当用户输入成员资格提供程序中已使用的用户名时所显示的错误消息。 |
EditProfileIconUrl |
获取或设置图像的 URL,该图像显示在指向“用户配置文件编辑”页的链接旁。 |
EditProfileText |
获取或设置指向“用户配置文件编辑”页的链接的文本标题。 |
EditProfileUrl |
获取或设置“用户配置文件编辑”页的 URL。 |
获取或设置用户输入的电子邮件地址。 |
|
EmailLabelText |
获取或设置电子邮件文本框的标签文本。 |
EmailRegularExpression |
获取或设置用于验证提供的电子邮件地址的正则表达式。 |
EmailRegularExpressionErrorMessage |
获取或设置当输入的电子邮件地址不满足站点的电子邮件地址条件时所显示的错误消息。 |
EmailRequiredErrorMessage |
获取或设置用户未在电子邮件文本框中输入电子邮件地址时向用户显示的错误消息。 |
Enabled |
获取或设置一个值,该值指示是否启用 Web 服务器控件。 (继承自 WebControl) |
EnableTheming |
获取或设置一个值,该值指示主题是否应用于该控件。 (继承自 WebControl) |
EnableViewState |
获取或设置一个值,该值指示服务器控件是否向发出请求的客户端保持自己的视图状态以及它所包含的任何子控件的视图状态。 (继承自 Control) |
ErrorMessageStyle |
获取一个对样式属性集合的引用,这些样式属性用于定义错误消息的外观。 |
Events |
获取控件的事件处理程序委托列表。 此属性为只读。 (继承自 Control) |
FinishCompleteButtonImageUrl |
获取或设置为“完成”按钮显示的图像的 URL。 (继承自 Wizard) |
FinishCompleteButtonStyle |
获取一个对 Style 对象的引用,该对象定义“完成”按钮的设置。 (继承自 Wizard) |
FinishCompleteButtonText |
获取或设置为“完成”按钮显示的描述文字。 (继承自 Wizard) |
FinishCompleteButtonType |
获取或设置呈现为“完成”按钮的按钮类型。 (继承自 Wizard) |
FinishDestinationPageUrl |
获取或设置在用户单击“完成”按钮时将重定向到的 URL。 (继承自 Wizard) |
FinishNavigationTemplate |
获取或设置在 Finish 步骤中用于显示导航区域的模板。 (继承自 Wizard) |
FinishPreviousButtonImageUrl |
获取或设置为 Finish 步骤中的“上一步”按钮显示的图像的 URL。 (继承自 Wizard) |
FinishPreviousButtonStyle |
获取一个对 Style 对象的引用,该对象定义 Finish 步骤中“上一步”按钮的设置。 (继承自 Wizard) |
FinishPreviousButtonText |
获取或设置为 Finish 步骤中的“上一步”按钮显示的描述文字。 (继承自 Wizard) |
FinishPreviousButtonType |
获取或设置呈现为 Finish 步骤中的“上一步”按钮的按钮类型。 (继承自 Wizard) |
Font |
获取与 Web 服务器控件关联的字体属性。 (继承自 WebControl) |
ForeColor |
获取或设置 Web 服务器控件的前景色(通常是文本颜色)。 (继承自 WebControl) |
HasAttributes |
获取一个值,该值指示控件是否具有特性集。 (继承自 WebControl) |
HasChildViewState |
获取一个值,该值指示当前服务器控件的子控件是否具有任何已保存的视图状态设置。 (继承自 Control) |
HeaderStyle |
获取一个对 Style 对象的引用,该对象定义控件上标题区域的设置。 (继承自 Wizard) |
HeaderTemplate |
获取或设置用于显示控件上标题区域的模板。 (继承自 Wizard) |
HeaderText |
获取或设置为在控件上的标题区域显示的文本标题。 (继承自 Wizard) |
Height |
获取或设置 Web 服务器控件的高度。 (继承自 WebControl) |
HelpPageIconUrl |
获取或设置图像的 URL,该图像显示在指向“帮助”页的链接旁。 |
HelpPageText |
获取或设置指向“帮助”页的链接的文本标题。 |
HelpPageUrl |
获取或设置“帮助”页的 URL。 |
HyperLinkStyle |
获取或设置用于定义超链接外观的属性集合。 |
ID |
获取或设置分配给服务器控件的编程标识符。 (继承自 Control) |
IdSeparator |
获取用于分隔控件标识符的字符。 (继承自 Control) |
InstructionText |
获取或设置对创建新用户帐户的说明。 |
InstructionTextStyle |
获取一个对属性集合的引用,这些属性用于定义说明文本的外观。 |
InvalidAnswerErrorMessage |
获取或设置密码恢复答案无效时所显示的消息。 |
InvalidEmailErrorMessage |
获取或设置输入的电子邮件地址无效时显示的消息。 |
InvalidPasswordErrorMessage |
获取或设置输入的密码无效时所显示的消息。 |
InvalidQuestionErrorMessage |
获取或设置输入的密码恢复问题无效时所显示的消息。 |
IsChildControlStateCleared |
获取一个值,该值指示该控件中包含的控件是否具有控件状态。 (继承自 Control) |
IsEnabled |
获取一个值,该值指示是否启用控件。 (继承自 WebControl) |
IsTrackingViewState |
获取一个值,用于指示服务器控件是否会将更改保存到其视图状态中。 (继承自 Control) |
IsViewStateEnabled |
获取一个值,该值指示是否为该控件启用了视图状态。 (继承自 Control) |
LabelStyle |
获取一个对属性集合的引用,这些属性用于定义标签的外观。 |
LayoutTemplate |
获取或设置 Wizard 控件中的根容器的自定义内容。 (继承自 Wizard) |
LoadViewStateByID |
获取一个值,该值指示控件是否通过 ID 而不是索引参与加载其视图状态。 (继承自 Control) |
LoginCreatedUser |
获取或设置一个值,该值指示在创建用户帐户后是否登录新用户。 |
MailDefinition |
获取一个对属性集合的引用,这些属性用于定义发送给新用户的电子邮件的特征。 |
MembershipProvider |
获取或设置为创建用户帐户而调用的成员资格提供程序。 |
NamingContainer |
获取对服务器控件的命名容器的引用,此引用创建唯一的命名空间,以区分具有相同 ID 属性值的服务器控件。 (继承自 Control) |
NavigationButtonStyle |
获取一个对 Style 对象的引用,该对象定义控件上导航区域中按钮的设置。 (继承自 Wizard) |
NavigationStyle |
获取一个对 Style 对象的引用,该对象定义控件上导航区域的设置。 (继承自 Wizard) |
Page |
获取对包含服务器控件的 Page 实例的引用。 (继承自 Control) |
Parent |
获取对页 UI 层次结构中服务器控件的父控件的引用。 (继承自 Control) |
Password |
获取用户输入的密码。 |
PasswordHintStyle |
获取一个对属性集合的引用,这些属性用于定义描述密码要求的文本的外观。 |
PasswordHintText |
获取或设置描述密码要求的文本。 |
PasswordLabelText |
获取或设置密码文本框的标签文本。 |
PasswordRegularExpression |
获取或设置用于验证提供的密码的正则表达式。 |
PasswordRegularExpressionErrorMessage |
获取或设置当输入的密码不符合站点的密码要求时所显示的错误消息。 |
PasswordRequiredErrorMessage |
获取或设置由于用户未输入密码而显示的错误消息的文本。 |
Question |
获取或设置用户输入的密码恢复确认问题。 |
QuestionAndAnswerRequired |
获取一个值,该值指示用户是否必须输入密码确认问题和答案。 |
QuestionLabelText |
获取或设置问题文本框的标签文本。 |
QuestionRequiredErrorMessage |
获取或设置由于用户未输入密码确认问题而显示的错误消息。 |
RenderingCompatibility |
获取一个值,该值指定呈现的 HTML 将与之兼容的 ASP.NET 版本。 (继承自 Control) |
RequireEmail |
获取或设置一个值,该值指示网站用户是否必须填写电子邮件地址。 |
SideBarButtonStyle |
获取一个对 Style 对象的引用,该对象定义侧栏上按钮的设置。 (继承自 Wizard) |
SideBarStyle |
获取一个对 Style 对象的引用,该对象定义控件上侧栏区域的设置。 (继承自 Wizard) |
SideBarTemplate |
获取或设置用于显示控件上侧栏区域的模板。 (继承自 Wizard) |
Site |
获取容器信息,该容器在呈现于设计图面上时承载当前控件。 (继承自 Control) |
SkinID |
获取或设置要应用于控件的外观。 (继承自 WebControl) |
SkipLinkText |
获取或设置一个值,它用于呈现替换文字,以通知屏幕阅读器跳过侧栏区域的内容。 |
StartNavigationTemplate |
获取或设置用于显示 Start 控件的 Wizard 步骤中的导航区域的模板。 (继承自 Wizard) |
StartNextButtonImageUrl |
获取或设置为 Start 步骤中的“下一步”按钮显示的图像的 URL。 (继承自 Wizard) |
StartNextButtonStyle |
获取一个对 Style 的引用,该对象定义 Start 步骤中的“下一步”按钮的设置。 (继承自 Wizard) |
StartNextButtonText |
获取或设置为 Start 步骤中的“下一步”按钮显示的描述文字。 (继承自 Wizard) |
StartNextButtonType |
获取或设置呈现为 Start 步骤中的“下一步”按钮的按钮类型。 (继承自 Wizard) |
StepNavigationTemplate |
获取或设置模板,该模板用于显示除 WizardStepBase、Start 或 Finish 步骤以外的任何从 Complete 派生的对象上的导航区域。 (继承自 Wizard) |
StepNextButtonImageUrl |
获取或设置为“下一步”按钮显示的图像的 URL。 (继承自 Wizard) |
StepNextButtonStyle |
获取一个对 Style 对象的引用,该对象定义“下一步”按钮的设置。 (继承自 Wizard) |
StepNextButtonText |
获取或设置为“下一步”按钮显示的描述文字。 (继承自 Wizard) |
StepNextButtonType |
获取或设置呈现为“下一步”按钮的按钮类型。 (继承自 Wizard) |
StepPreviousButtonImageUrl |
获取或设置为“上一步”按钮显示的图像的 URL。 (继承自 Wizard) |
StepPreviousButtonStyle |
获取一个对 Style 对象的引用,该对象定义“上一步”按钮的设置。 (继承自 Wizard) |
StepPreviousButtonText |
获取或设置为“上一步”按钮显示的描述文字。 (继承自 Wizard) |
StepPreviousButtonType |
获取或设置呈现为“上一步”按钮的按钮类型。 (继承自 Wizard) |
StepStyle |
获取一个对 Style 对象的引用,该对象定义 WizardStep 对象的设置。 (继承自 Wizard) |
Style |
获取将在 Web 服务器控件的外部标记上呈现为样式特性的文本特性的集合。 (继承自 WebControl) |
SupportsDisabledAttribute |
获取一个值,该值指示在控件的 |
TabIndex |
获取或设置 Web 服务器控件的选项卡索引。 (继承自 WebControl) |
TagKey |
获取与 HtmlTextWriterTag 控件相对应的 Wizard 值。 (继承自 Wizard) |
TagName |
获取控件标记的名称。 此属性主要由控件开发人员使用。 (继承自 WebControl) |
TemplateControl |
获取或设置对包含该控件的模板的引用。 (继承自 Control) |
TemplateSourceDirectory |
获取包含当前服务器控件的 Page 或 UserControl 的虚拟目录。 (继承自 Control) |
TextBoxStyle |
获取一个对属性集合的引用,这些属性用于定义文本框控件的外观。 |
TitleTextStyle |
获取一个对属性集合的引用,这些属性用于定义标题的外观。 |
ToolTip |
获取或设置当鼠标指针悬停在 Web 服务器控件上时显示的文本。 (继承自 WebControl) |
UniqueID |
获取服务器控件的唯一的、以分层形式限定的标识符。 (继承自 Control) |
UnknownErrorMessage |
获取或设置当成员资格提供程序返回未定义的错误时所显示的错误消息。 |
UserName |
获取或设置用户输入的用户名。 |
UserNameLabelText |
获取或设置“用户名”文本框的标签文本。 |
UserNameRequiredErrorMessage |
获取或设置当用户名文本框留空时所显示的错误消息。 |
ValidateRequestMode |
获取或设置指示控件是否检查来自浏览器的客户端输入是否具有潜在危险值的值。 (继承自 Control) |
ValidatorTextStyle |
获取对 Style 对象的引用,该对象允许您设置验证错误消息的外观。 |
ViewState |
获取状态信息的字典,这些信息使您可以在同一页的多个请求间保存和还原服务器控件的视图状态。 (继承自 Control) |
ViewStateIgnoresCase |
获取一个值,该值指示 StateBag 对象是否不区分大小写。 (继承自 Control) |
ViewStateMode |
获取或设置此控件的视图状态模式。 (继承自 Control) |
Visible |
获取或设置一个值,该值指示服务器控件是否作为 UI 呈现在页上。 (继承自 Control) |
Width |
获取或设置 Web 服务器控件的宽度。 (继承自 WebControl) |
WizardSteps |
获取一个对集合的引用,该集合包含为控件定义的所有 WizardStepBase 对象。 |
方法
事件
ActiveStepChanged |
当用户切换到控件中的新步骤时发生。 (继承自 Wizard) |
CancelButtonClick |
单击“取消”按钮时发生。 (继承自 Wizard) |
ContinueButtonClick |
用户单击创建用户帐户最后一步中的“继续”按钮时发生。 |
CreatedUser |
在成员资格提供程序创建了新的网站用户帐户后发生。 |
CreateUserError |
当成员资格提供程序无法创建指定的用户帐户时发生。 |
CreatingUser |
在调用成员资格提供程序以创建新的网站用户帐户前发生。 |
DataBinding |
当服务器控件绑定到数据源时发生。 (继承自 Control) |
Disposed |
当从内存释放服务器控件时发生,这是请求 ASP.NET 页时服务器控件生存期的最后阶段。 (继承自 Control) |
FinishButtonClick |
单击“完成”按钮时发生。 (继承自 Wizard) |
Init |
当服务器控件初始化时发生;初始化是控件生存期的第一步。 (继承自 Control) |
Load |
当服务器控件加载到 Page 对象中时发生。 (继承自 Control) |
NextButtonClick |
单击“下一步”按钮时发生。 (继承自 Wizard) |
PreRender |
在加载 Control 对象之后、呈现之前发生。 (继承自 Control) |
PreviousButtonClick |
单击“上一步”按钮时发生。 (继承自 Wizard) |
SendingMail |
在向用户发送用于确认帐户已创建的电子邮件前发生。 |
SendMailError |
在向新用户发送电子邮件的过程中出现 SMTP 错误时发生。 |
SideBarButtonClick |
当单击侧栏区域中的按钮时发生。 (继承自 Wizard) |
Unload |
当服务器控件从内存中卸载时发生。 (继承自 Control) |
显式接口实现
扩展方法
FindDataSourceControl(Control) |
返回与指定控件的数据控件关联的数据源。 |
FindFieldTemplate(Control, String) |
返回指定控件的命名容器中指定列的字段模板。 |
FindMetaTable(Control) |
返回包含数据控件的元表对象。 |
GetDefaultValues(INamingContainer) |
为指定数据控件获取默认值的集合。 |
GetMetaTable(INamingContainer) |
为指定数据控件获取表元数据。 |
SetMetaTable(INamingContainer, MetaTable) |
为指定数据控件设置表元数据。 |
SetMetaTable(INamingContainer, MetaTable, IDictionary<String,Object>) |
为指定数据控件设置表元数据和默认值映射。 |
SetMetaTable(INamingContainer, MetaTable, Object) |
为指定数据控件设置表元数据和默认值映射。 |
TryGetMetaTable(INamingContainer, MetaTable) |
确定表元数据是否可用。 |
EnableDynamicData(INamingContainer, Type) |
为指定数据控件启用动态数据行为。 |
EnableDynamicData(INamingContainer, Type, IDictionary<String,Object>) |
为指定数据控件启用动态数据行为。 |
EnableDynamicData(INamingContainer, Type, Object) |
为指定数据控件启用动态数据行为。 |