本文整理汇总了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;
}
}
}
示例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;
}
}
}