当前位置: 首页>>代码示例>>C#>>正文


C# Users.saveUser方法代码示例

本文整理汇总了C#中Users.saveUser方法的典型用法代码示例。如果您正苦于以下问题:C# Users.saveUser方法的具体用法?C# Users.saveUser怎么用?C# Users.saveUser使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Users的用法示例。


在下文中一共展示了Users.saveUser方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: Button1_Click

    /// <summary>
    /// Saves the new User and makes the validations.
    /// </summary>
    /// <param name="sender"></param>
    /// <param name="e"></param>
    protected void Button1_Click(object sender, EventArgs e)
    {
        int idPrivilege = Convert.ToUInt16(DropDownList1.SelectedValue);
        string Name = Security.cleanSQL(TextBox1.Text);
        string LastName = Security.cleanSQL(TextBox2.Text);
        string Username = Security.cleanSQL(TextBox3.Text);
        string Password = TextBox4.Text;
        string Email = Security.cleanSQL(TextBox5.Text);
        string Phone = Security.cleanSQL(TextBox8.Text);
        string Address = Security.cleanSQL(TextBox7.Text);
        string RFC = Security.cleanSQL(TextBox6.Text);

        if (!Security.isPassword(Password))
        {
            this.setNotification("warning", "¡Contraseña inválida!", "La contraseña debe contener al menos 6 carácteres, entre ellos al menos un carácter especial o número.");
        }
        else if (Security.isEmpty(Name))
        {
            this.setNotification("warning", "¡No hay nombre!", "Ingrese un nombre por favor...");
        }
        else if (Security.isEmpty(LastName))
        {
            this.setNotification("warning", "¡No hay apellido!", "Ingrese un apellido por favor...");
        }
        else if (Security.isEmpty(Username))
        {
            this.setNotification("warning", "¡No hay usuario!", "Ingrese un usuario por favor...");
        }
        else if (Security.isEmpty(Email))
        {
            this.setNotification("warning", "¡No hay email!", "Ingrese un email por favor...");
        }
        else if (!Security.isEmail(Email))
        {
            this.setNotification("warning", "¡Email inválido!", "El email ingresado no es válido...");
        }
        else if (Security.isEmpty(Address))
        {
            this.setNotification("warning", "¡No hay dirección!", "Ingrese una dirección por favor...");
        }
        else if (Security.isEmpty(RFC))
        {
            this.setNotification("warning", "¡No hay rfc!", "Ingrese un rfc por favor...");
        }
        else if (!Security.isRFC(RFC))
        {
            this.setNotification("warning", "¡RFC Inválido!", "El RFC ingresado no es válido...");
        }
        else if (!Security.isEmpty(Phone) && !Security.isPhone(Phone))
        {
            this.setNotification("warning", "¡Teléfono Inválido!", "El teléfono ingresado no es válido... El formato correcto es LADA+TELEFONO, ejemplo: 31400000");
        }
        else
        {
            Users user = new Users(0, idPrivilege, Name, LastName, Username, Security.encrypt(Password), Email, Phone, Address, RFC);

            int result = user.saveUser();

            switch (result)
            {
                case 1:
                    Response.Redirect(webURL + "views/users/newuser.aspx?action=notify&id=" + 1, false);
                    break;
                case -1:
                    this.setNotification("warning", "¡Campo repetido!", "Ya existe alguien registrado con ese email...");
                    break;
                case -2:
                    this.setNotification("warning", "¡Campo repetido!", "Ya existe alguien registrado con ese RFC...");
                    break;
                case -3:
                    this.setNotification("warning", "¡Campo repetido!", "Ya existe alguien registrado con ese usuario...");
                    break;
                default:
                    this.setNotification("error", "¡Ooooops!", "Algo salio mal...");
                    break;
            }
        }
    }
开发者ID:efigarolam,项目名称:Snackthat,代码行数:83,代码来源:newuser.aspx.cs

示例2: Button1_Click

    /// <summary>
    /// Edits the current User and makes the validations.
    /// </summary>
    /// <param name="sender"></param>
    /// <param name="e"></param>
    protected void Button1_Click(object sender, EventArgs e)
    {
        int idUser = Convert.ToInt16(HiddenField1.Value);
        int idPrivilege = Convert.ToUInt16(DropDownList1.SelectedValue);
        string Name = Security.cleanSQL(TextBox1.Text);
        string LastName = Security.cleanSQL(TextBox2.Text);
        string Username = Security.cleanSQL(TextBox3.Text);
        string Email = Security.cleanSQL(TextBox5.Text);
        string Phone = Security.cleanSQL(TextBox8.Text);
        string Address = Security.cleanSQL(TextBox7.Text);
        string RFC = Security.cleanSQL(TextBox6.Text);

        if (Security.isEmpty(Name))
        {
            this.setNotification("warning", "¡No hay nombre!", "Ingrese un nombre por favor...");
        }
        else if (Security.isEmpty(LastName))
        {
            this.setNotification("warning", "¡No hay apellido!", "Ingrese un apellido por favor...");
        }
        else if (Security.isEmpty(Username))
        {
            this.setNotification("warning", "¡No hay usuario!", "Ingrese un usuario por favor...");
        }
        else if (Security.isEmpty(Email))
        {
            this.setNotification("warning", "¡No hay email!", "Ingrese un email por favor...");
        }
        else if (!Security.isEmail(Email))
        {
            this.setNotification("warning", "¡Email inválido!", "El email ingresado no es válido...");
        }
        else if (Security.isEmpty(Address))
        {
            this.setNotification("warning", "¡No hay dirección!", "Ingrese una dirección por favor...");
        }
        else if (Security.isEmpty(RFC))
        {
            this.setNotification("warning", "¡No hay rfc!", "Ingrese un rfc por favor...");
        }
        else if (!Security.isRFC(RFC))
        {
            this.setNotification("warning", "¡RFC Inválido!", "El RFC ingresado no es válido...");
        }
        else if (!Security.isEmpty(Phone) && !Security.isPhone(Phone))
        {
            this.setNotification("warning", "¡Teléfono Inválido!", "El teléfono ingresado no es válido... El formato correcto es LADA+TELEFONO, ejemplo: 31400000");
        }
        else
        {
            Users user = new Users(idUser, idPrivilege, Name, LastName, Username, "", Email, Phone, Address, RFC);

            int result = user.saveUser();

            switch (result)
            {
                case 1:
                    Response.Redirect(webURL + "views/users/edituser.aspx?id=" + idUser + "&action=notify&nid=" + 1, false);
                    break;
                case -3:
                    this.setNotification("warning", "¡Campo(s) repetido(s)!", "Ya existe alguien registrado con ese usuario, email o RFC...");
                    break;
                case 0:
                    this.setNotification("error", "¡Ooooops!", "No existe el usuario...");
                    break;
                default:
                    this.setNotification("error", "¡Ooooops!", "Algo salio mal...");
                    break;
            }
        }
    }
开发者ID:efigarolam,项目名称:Snackthat,代码行数:76,代码来源:edituser.aspx.cs


注:本文中的Users.saveUser方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。