ATUAV_Experiment.Account.Register.RegisterUser_CreatedUser C# (CSharp) 메소드

RegisterUser_CreatedUser() 보호된 메소드

protected RegisterUser_CreatedUser ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
리턴 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);
        }