How to logout the user after CompleteWizardStep in CreateUserWizard

  • Thread starter Thread starter staeri
  • Start date Start date
S

staeri

Hello!

It looks like the newly registered user is logged in after the
CompleteWizardStep in CreateUserWizard is finished.

I would like to logout the user when that step appears. How can I do
that?

Regards,

S
 
Hi S,

Is it that setting logincreateduser="False" doesn't work for you?

<asp:createuserwizard id="CreateUserWizard1" runat="server"
logincreateduser="False">
<wizardsteps>
<asp:createuserwizardstep runat="server">
</asp:createuserwizardstep>
<asp:completewizardstep runat="server">
</asp:completewizardstep>
</wizardsteps>
</asp:createuserwizard>

Ken
Microsoft MVP [ASP.NET]
 
Back
Top