
11/05/2005, 01:58
|
 | | | Fecha de Ingreso: abril-2005
Mensajes: 611
Antigüedad: 20 años Puntos: 1 | |
Hemos avanzado :) Mira la cosa keda asi:
en en onload:
if (Request.Form["__eventtarget"].ToString() == "guardar")
{
string identificadores = Request.Form["__eventargument"];
Array arrayidentificadores = (identificadores.Split(Convert.ToChar("#")));
CambiaServicios(arrayidentificadores);
}
la funcion cambia servicios:
private void CambiaServicios(Array arr)
{
myConnection = new SqlConnection (connectionString);
string updateCmd;
if (ConfUsPass.Visible)
{
updateCmd = "UPDATE Usuarios SET UsNombre=@UsNombre,UsPass=@UsPass,UsMail=@UsMail,U sTelefono=@UsTelefono,UsIdPer=@UsIdPer where UsId=@UsId";
}
else
{
updateCmd = "UPDATE Usuarios SET UsNombre=@UsNombre,UsMail=@UsMail,UsTelefono=@UsTe lefono,UsIdPer=@UsIdPer where UsId=@UsId";
}
myCommand = new SqlCommand(updateCmd, myConnection);
myCommand.Parameters.Add(new SqlParameter("@UsId",
SqlDbType.Int, 4));
myCommand.Parameters["@UsId"].Value = ComboLogin.SelectedItem.Value;
myCommand.Parameters.Add(new SqlParameter("@UsNombre",
SqlDbType.NVarChar, 50));
myCommand.Parameters["@UsNombre"].Value = UsNombre.Value;
myCommand.Parameters.Add(new SqlParameter("@UsPass",
SqlDbType.NVarChar, 50));
myCommand.Parameters["@UsPass"].Value = UsPass.Value;
myCommand.Parameters.Add(new SqlParameter("@UsMail",
SqlDbType.NVarChar, 50));
myCommand.Parameters["@UsMail"].Value = UsMail.Value;
myCommand.Parameters.Add(new SqlParameter("@UsTelefono",
SqlDbType.NVarChar, 15));
myCommand.Parameters["@UsTelefono"].Value = UsTelefono.Value;
myCommand.Parameters.Add(new SqlParameter("@UsIdPer",
SqlDbType.Int, 4));
myCommand.Parameters["@UsIdPer"].Value = UsPerfil.SelectedItem.Value;
myCommand.Connection.Open();
try
{
if ((ConfUsPass.Visible) && (UsPass.Value!=ConfUsPass.Value))
MsgBox1.alert("El password no es correcto");
else
{
int numreg=myCommand.ExecuteNonQuery();
//updateservicios();
Response.Redirect("MenuadministradorUsu.aspx?Oku=1 &Nombre="+Request.QueryString["Nombre"].ToString()+"&Id="+Request.QueryString["id"].ToString()+"&mod="+ComboLogin.SelectedItem.Value) ;
//Response.Redirect("Menuadministrador1.aspx?Oku=1&m od="+nombre.Text);
}
}
catch (SqlException c)
{
if (c.Number == 2627)
mensage.Text = "ERROR: Este cliente ya existe";
else
mensage.Text = "ERROR: No se ha podido añadir el registro, por favor " +
"asegurese de que todo esta correctamente escrito, gracias";
}
myCommand.Connection.Close();
string sql;
int i=0;
while (i< arr.Length)
{
if (i==0)
sql = " where UsServIdServ==" & arr[i];
else
sql += " and UsServIdServ==" & arr[i];
i+=1;
}
sql = "Delete from UsuariosServicios " + sql + " and UsServIdUs=" + ComboLogin.SelectedItem.Value;
myCommand.Connection.Open();
myCommand.CommandText = sql;
myCommand.Connection.Close();
i=0;
while (i< arr.Length)
{
if (Convert.toString(System.ViewState["identificadores"]).Contains(arr[i]).toString)
{
}
else
{
myCommand.CommandText = " Insert into UsuariosServicios (UsServIdServ,UsServIdUs) values(" & arr[i] &"," & ComboLogin.SelectedItem.Value &")";
}
i+=1;
}
myCommand.Connection.Open();
myCommand.Connection.Close();
}
te parece correcto lo del insert y el update???
Muchas gracias por todo esto, sin tu ayuda la cosa estaria muuuuy jodida... |