CreateUserWizardStep.AllowReturn Property
.NET Framework 3.0
Gets or sets a value indicating whether the user is allowed to return to the current step from a subsequent step in a CreateUserWizard control.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
public: virtual property bool AllowReturn { bool get () override; void set (bool value) override; }
/** @property */ public boolean get_AllowReturn () /** @property */ public void set_AllowReturn (boolean value)
public override function get AllowReturn () : boolean public override function set AllowReturn (value : boolean)
Not applicable.
Property Value
true if the user is allowed to return to the CreateUserWizardStep step; otherwise, false. The default is false.The AllowReturn property is set to false to keep users from returning to the CreateUserWizardStep step and accidentally trying to create another user account with the same credentials. If you override the AllowReturn property and set it to true, you should include logic in your application to remove the user account that was originally created before the user returned to this step, or to allow the user to edit information he or she originally entered.
Community Additions
ADD
Show: