protected void Page_Load(object sender, EventArgs e) { id_oferta = Request.QueryString["id"]; oferta = new Oferta(); oferta.cargar(id_oferta); Label1.Text = oferta.Oficio; Label2.Text = oferta.Pre_requisito; Label3.Text = oferta.Entidad; Label4.Text = oferta.Direccion; Label5.Text = oferta.Telefono_cel; Label6.Text = oferta.Telefono_cel_opcional; Label7.Text = oferta.Telefono_fijo; Label8.Text = oferta.Correo; Label9.Text = oferta.Correo_opcional; Label10.Text = oferta.Informacion_adicional; Label11.Text = Convert.ToDateTime(oferta.Fecha_limite).ToString("dd-MM-yyyy"); Label12.Text = Convert.ToDateTime(oferta.Fecha).ToString("dd-MM-yyyy"); if (oferta.Tipo.Equals("1")) { Label13.Text = "Oferta Academica"; } else { Label13.Text = "Oferta Empleo"; } }
protected void Page_Load(object sender, EventArgs e) { cod_tipo = Request.QueryString["tipo"]; cod = Convert.ToString(Session["cod"]); cod_ofe = Request.QueryString["ofe"]; oferta = new Oferta(); oferta.cargar(cod_ofe); if (cod_tipo.Equals("1")) { Label1.Text = "Oferta Academica"; } else { Label1.Text = "Oferta Empleo"; } if(!IsPostBack){ TextBox1.Text = oferta.Oficio; TextBox2.Text = oferta.Pre_requisito; TextBox3.Text = oferta.Entidad; TextBox4.Text = oferta.Direccion; TextBox5.Text = oferta.Telefono_cel; TextBox6.Text = oferta.Telefono_cel_opcional; TextBox7.Text = oferta.Telefono_fijo; TextBox8.Text = oferta.Correo; TextBox9.Text = oferta.Correo_opcional; TextBox10.Text = oferta.Informacion_adicional; TextBox11.Text = Convert.ToDateTime(oferta.Fecha_limite).ToString("yyyy-MM-dd"); } }