Mega Code Archive

 
Categories / ASP.Net / Login Security
 

Using CreateUserWizard

<%@ Page Language="C#" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server">     <title>Create Account</title> </head> <body>     <form id="form1" runat="server">     <div>         <asp:CreateUserWizard ContinueDestinationPageUrl="CreateAccount.aspx" ID="CreateUserWizard1"             runat="server">             <WizardSteps>                 <asp:CreateUserWizardStep runat="server" Title="Sign Up for Your New Account">                 </asp:CreateUserWizardStep>                 <asp:CompleteWizardStep runat="server" Title="Complete">                 </asp:CompleteWizardStep>             </WizardSteps>         </asp:CreateUserWizard>          </div>     </form> </body> </html>