Ejemplo n.º 1
0
    protected void OnSubmit(object sender, EventArgs e)
    {
        //Validate control states
        if (!Page.IsValid)
        {
            return;
        }

        //Create a new user
        MembershipCreateStatus status = MembershipCreateStatus.Success;
        MembershipUser         user   = Membership.CreateUser(this.txtUserID.Text.Trim(), this.txtPassword.Text.Trim(), this.txtEmail.Text.Trim(), null, null, false, out status);

        switch (status)
        {
        case MembershipCreateStatus.Success:
            //Add user to the guest role
            Roles.AddUserToRole(this.txtUserID.Text.Trim(), MembershipServices.GUESTROLE);

            //Create user profile and set properties value
            ProfileCommon profile = Profile.GetProfile(this.txtUserID.Text.Trim());
            profile.Company        = this.txtCompany.Text.Trim();
            profile.UserFullName   = this.txtFullName.Text.Trim();
            profile.WebServiceUser = false;
            profile.Save();

            //Send notification to the administrator
            EmailServices svcs = new EmailServices();
            svcs.SendRegisterReceiptEmail(this.txtFullName.Text.Trim(), this.txtEmail.Text.Trim());

            //Disply confirmation to user
            string msg = "Thank you. Your registration request has been received. ";
            msg += "You will receive email confirmation when your account becomes active. ";
            msg += "If you dont receive confirmation in the next 2 business days then ";
            msg += "contact customer support at [email protected] or 800-274-4582.";
            System.Text.StringBuilder script = new System.Text.StringBuilder();
            script.Append("<script language='javascript'>");
            script.Append("\talert('" + msg + "');");
            script.Append("\twindow.navigate('Login.aspx');");
            script.Append("</script>");
            Page.ClientScript.RegisterStartupScript(typeof(Page), "Registered", script.ToString());
            break;

        case MembershipCreateStatus.DuplicateEmail:
            revEmail.IsValid      = false;
            revEmail.ErrorMessage = EMAIL_NOT_UNIQUE;
            break;

        case MembershipCreateStatus.DuplicateUserName:
            rfvUserID.IsValid      = false;
            rfvUserID.ErrorMessage = USERID_NOT_UNIQUE;
            break;

        case MembershipCreateStatus.InvalidPassword:
            rfvPassword.IsValid      = false;
            rfvPassword.ErrorMessage = PASSWORD_MIN_LENGHT;
            break;

        case MembershipCreateStatus.UserRejected:
            break;
        }
    }