Example #1
0
        protected void btnGuardar_Click(object sender, EventArgs e)
        {
            btnGuardar.Style.Add("visibility", "hidden");

            Usuario us = (Usuario)(Session["Usuario"]);

            EmpleadorMngr emp = new EmpleadorMngr();

            emp.UpdateEmpleador(us.IdEmpleador, txtRazonSocial.Value, txtNombreFantasia.Value, txtCuit.Value, txtDireccion.Value, txtTelPrin.Value, txtTelSec.Value, selPcia.Value, txtLocalidad.Value, txtCodPostal.Value, txtEmail.Value);
        }