CreateUserWizard.ContinueButtonCommandName 字段

定义

表示创建用户帐户最后一骤中“继续”按钮的 CommandName 值。Represents the CommandName value of the Continue button on the final step for creating a user account. ContinueButtonCommandName 字段是只读的。The ContinueButtonCommandName field is read-only.

public: static initonly System::String ^ ContinueButtonCommandName;
public static readonly string ContinueButtonCommandName;
 staticval mutable ContinueButtonCommandName : string
Public Shared ReadOnly ContinueButtonCommandName As String 

字段值

String

注解

ContinueButtonCommandName 字段表示 CommandName 创建用户帐户最后一步中的 " 继续 " 按钮的值。The ContinueButtonCommandName field represents the CommandName value of the Continue button on the final step for creating a user account.

若要为控件中包含的任何控件分配 continue 功能 Button CreateUserWizard ,请将 CommandName 按钮的属性设置为字段中包含的字符串 ContinueButtonCommandNameTo assign continue functionality to any Button control contained in the CreateUserWizard control, set the CommandName property of the button to the string that is contained in the ContinueButtonCommandName field.

" 继续 " 按钮显示在用于创建用户帐户的最后一个步骤的模板上,该用户帐户由 CompleteStep 属性表示。The Continue button appears on the template for the final step for creating a user account, which is represented by the CompleteStep property. 单击 " 继续 " 按钮会将用户重定向到属性中存储的 URL ContinueDestinationPageUrlClicking the Continue button redirects the user to the URL that is stored in the ContinueDestinationPageUrl property. 若要将自定义功能添加到 " 继续 " 按钮,请为事件创建一个事件处理程序 ContinueButtonClickTo add custom functionality to the Continue button, create an event handler for the ContinueButtonClick event.

适用于