Ejemplo n.º 1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     // Cuando se cargué el formulario
     if (!IsPostBack)
     {
         if (Request.QueryString["id"] != null)
         {
             txtCodigo.Text = Request.QueryString["id"];
             Empleado myEmpleado = datos.consultaEmpleado(txtCodigo.Text);
             txtNombre.Text             = myEmpleado.Nombre;
             txtApellido.Text           = myEmpleado.Apellido;
             txtCargo.Text              = myEmpleado.Cargo;
             txtSalario.Text            = myEmpleado.Salario;
             txtArea.Text               = myEmpleado.Area;
             txtCiudad.Text             = myEmpleado.Ciudad;
             btnAgregarEmpleado.Visible = false;
             btnEditarEmpleado.Visible  = true;
             btnBorrarEmpleado.Visible  = true;
             txtCodigo.Enabled          = false;
         }
         else
         {
             txtCodigo.Enabled          = true;
             btnAgregarEmpleado.Visible = true;
             btnEditarEmpleado.Visible  = false;
             btnBorrarEmpleado.Visible  = false;
         }
     }
 }
Ejemplo n.º 2
0
        protected void Page_Load(object sender, EventArgs e)
        {
            // Cuando carga el formulario
            if (!IsPostBack)
            {
                if (Request.QueryString["id"] != null)
                {
                    InCodigo.Text = Request.QueryString["id"];
                    Empleado myEmpleado = datos.consultaEmpleado(InCodigo.Text);
                    InNombre.Text   = myEmpleado.Nombre;
                    InApellido.Text = myEmpleado.Apellido;
                    InCargo.Text    = myEmpleado.Nombre;
                    InSalario.Text  = myEmpleado.Nombre;
                    InArea.Text     = myEmpleado.Nombre;
                    InCiudad.Text   = myEmpleado.Nombre;

                    InCodigo.Enabled           = false;
                    btnAgregarEmpleado.Visible = false;
                    btnEditarEmpleado.Visible  = true;
                    btnBorrarEmpleado.Visible  = true;
                }
                else
                {
                    InCodigo.Enabled           = true;
                    btnAgregarEmpleado.Visible = true;
                    btnEditarEmpleado.Visible  = false;
                    btnBorrarEmpleado.Visible  = false;
                    return;
                }
            }
        }