protected void Button2_Click(object sender, EventArgs e) { try { terc.identificacion = TextBoxdni.Text; DataRow te = Validar.Consulta(terc.ConsultarTerceroDos(terc)).Rows[0]; contr.terceros_idterceros = te["idterceros"].ToString(); DataRow cont = Validar.Consulta(contr.ConsultarContratoIdTercero(contr)).Rows[0]; DataTable dat = Validar.Consulta(serv.consultaservicioscont1(cont["idcontrato"].ToString())); GridView1.DataSource = dat; GridView1.DataBind(); divtablagestcontr.Visible = true; Label1.Text = te["nombre"].ToString(); if (te["apellido"].ToString() == "") { Label2.Visible = false; } else { Label2.Text = te["apellido"].ToString(); } TextBox1.Text = te["direccion"].ToString(); iddatosterceros.Visible = true; try { DropDownList3.DataSource = cinci.Consultarcategoriaincidencia(); DropDownList3.DataTextField = "categoriaincidencia"; DropDownList3.DataValueField = "idcategoriaincidencia"; DropDownList3.DataBind(); } catch (Exception ex) { textError.InnerHtml = ex.Message; Alerta.CssClass = "alert alert-error"; Alerta.Visible = true; } } catch (Exception ex) { textError.InnerHtml = ex.Message; Alerta.CssClass = "alert alert-error"; Alerta.Visible = true; } }
protected void Button1_Click(object sender, EventArgs e) { //for (int i = 0; i < 10000; i++) //{ // contrat.insertpruebaconexion(); //} try { terc.identificacion = texboxdni.Text; DataRow dat = Validar.Consulta(terc.ConsultarTerceroDos(terc)).Rows[0]; contrat.terceros_idterceros = dat["idterceros"].ToString(); DataTable datcont = Validar.Consulta(contrat.ConsultarContratoIdTercero(contrat)); GridView1.DataSource = datcont; GridView1.DataBind(); divtablagestcontr.Visible = true; cargarplanes(); } catch (Exception ex) { ScriptManager.RegisterStartupScript(this, this.GetType(), "hwa", "nocontro();", true); } }
protected void Page_Load(object sender, EventArgs e) { try { if (!IsPostBack) { string valor = Convert.ToString(Request.QueryString["key"]); if (valor == null) { Response.Redirect("registroterceros.aspx"); } else { ScriptManager.RegisterStartupScript(this, this.GetType(), "hwa", "deletealert();", true); dnitercero.Text = valor; DropDownListpaiscontrato.DataSource = pais.ConsultarPais(); DropDownListpaiscontrato.DataTextField = "pais"; DropDownListpaiscontrato.DataValueField = "idpais"; DropDownListpaiscontrato.SelectedValue = "1"; DropDownListpaiscontrato.DataBind(); cargarDepartamentos(DropDownListpaiscontrato.SelectedValue); DropDownListdepartamentocontrato.SelectedValue = "2"; cargarMunicipios(DropDownListdepartamentocontrato.SelectedValue); DropDownListmunicipiocontrato.SelectedValue = "1"; cargarBarrios(DropDownListmunicipiocontrato.SelectedValue); DropDownListtiporedenciacontrato.DataSource = tpres.ConsultarTipoResidencia(); DropDownListtiporedenciacontrato.DataTextField = "tiporesidencia"; DropDownListtiporedenciacontrato.DataValueField = "idtiporesidencia"; DropDownListtiporedenciacontrato.DataBind(); DropDownListtipocontrato.DataSource = tpoc.ConsultarTipoContrato(); DropDownListtipocontrato.DataTextField = "tipocontrato"; DropDownListtipocontrato.DataValueField = "idtipocontrato"; DropDownListtipocontrato.DataBind(); terc.identificacion = dnitercero.Text; DataRow tercero = Validar.Consulta(terc.ConsultarTerceroDos(terc)).Rows[0]; Label1.Text = tercero["nombre"].ToString(); if (tercero["tipoterceros"].ToString() == "NATURAL" || tercero["tipoterceros"].ToString() == "EMPLEADO") { Label2.Text = tercero["apellido"].ToString(); idsucursallabel.Visible = false; DropDownListsucursalcontrato.Visible = false; } else { if (tercero["tipoterceros"].ToString() == "CORPORATIVO" || tercero["tipoterceros"].ToString() == "ESPECIAL") { Label2.Visible = false; idapellidolabel.Visible = false; cargartablasucursal(tercero["idterceros"].ToString()); } } TextBox1.Text = tercero["direccion"].ToString(); Labelidtercero.Text = tercero["idterceros"].ToString(); cargartabla(Labelidtercero.Text); DataRow cog = contrat.Consultarultimocodigo().Rows[0]; string codgulti = cog["pr_consultarultimocontrat"].ToString(); int codnew = Convert.ToInt32(codgulti) + 1; TextBox4.Text = codnew.ToString(); } } } catch (Exception ex) { textError.InnerHtml = ex.Message; Alerta.CssClass = "alert alert-error"; Alerta.Visible = true; } }