protected void btnAgregar_Click(object sender, EventArgs e) { String idhotel = ddlHotel.Text; String idusaurio = txtUsuario.Text; String iddepto = ddlDepartamento.Text; String idperiodo = txtPeriodo.Text; String anio = txtAnio.Text; DataSet ds; getData obj = new getData(); obj.SeccionConnStr = "DSNCONN"; ds = obj.insertJefe(idhotel, idusaurio, iddepto, idperiodo, anio); if (ds.Tables[0].Rows.Count > 0) { String insert = ds.Tables[0].Rows[0]["inserta"] as string; if (insert == "1") { MessageBox.Show("Usuario Agregado Correctamente"); } else { MessageBox.Show("Usuario Ya existe"); } } /* * String conexion = "Data Source=SIEM;Initial Catalog=DevClimaLaboral2;User ID=sa;Password=siem2000"; * SqlConnection cnn = new SqlConnection(conexion); * * cnn.Open(); * SqlCommand cmd=new SqlCommand("SpAgregarJefe",cnn); * cmd.CommandType = CommandType.StoredProcedure; * cmd.Parameters.Add("@IDHOTEL", SqlDbType.VarChar).Value = txtHotel.Text; * cmd.Parameters.Add("@IDUSUARIO", SqlDbType.Int).Value = txtUsuario.Text; * cmd.Parameters.Add("@IDDEPTO", SqlDbType.Int).Value = txtDepartamento.Text; * cmd.Parameters.Add("@IDPERIODO", SqlDbType.Int).Value = txtPeriodo.Text; * cmd.Parameters.Add("@AÑO", SqlDbType.Int).Value = txtAnio.Text; * cmd.ExecuteNonQuery(); * * MessageBox.Show("Usuario Agregado Correctamente"); * txtHotel.Text = ""; * txtUsuario.Text = ""; * txtDepartamento.Text = ""; * txtPeriodo.Text = ""; * txtAnio.Text = ""; */ }