ATUAV_Experiment.Account.Register.RegisterUser_CreatedUser C# (CSharp) Method

RegisterUser_CreatedUser() protected method

protected RegisterUser_CreatedUser ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        protected void RegisterUser_CreatedUser(object sender, EventArgs e)
        {
            FormsAuthentication.SetAuthCookie(RegisterUser.UserName, false /* createPersistentCookie */);

            string continueUrl = RegisterUser.ContinueDestinationPageUrl;
            if (String.IsNullOrEmpty(continueUrl))
            {
                continueUrl = "~/";
            }
            Response.Redirect(continueUrl);
        }