1

如果邮件发送失败,我想更改 createuserwizard.step= start 而不是成功创建步骤。

                 catch (SmtpException ex)
    {
       Membership.DeleteUser(textboxemail.Text.Trim());
       Literal errorMessage=(Literal) CreateUserWizard1.CreateUserStep.ContentTemplateContainer.FindControl("ErrorMessage");
       errorMessage.Text = "Account creation failed due to email notification."+ ex.Message + " errorcode" +ex.StatusCode + "; inner exception; " + ex.InnerException;
       CreateUserWizard1.CreateUserStep.StepType = WizardStepType.Start;
    }

但例外情况是无法更改步骤类型。那么如何做到这一点。我的意思是停止迈向成功的一步。

4

1 回答 1

3

您收到该异常是因为您需要使用Wizard.MoveTo 方法

像这样:

CreateUserWizard1.MoveTo(WizardStep1);

其中“WizardStep1”是asp:WizardStep您想要返回的 ID(“开始”步骤)。

于 2013-07-02T13:40:16.970 回答