protected void Page_Load(object sender, EventArgs e) { DaoPersonal dao_personal = new DaoPersonal(); if (!IsPostBack) { if ((string)Session["id_cliente"] != null) { Cargar_Informacion_Cliente(); btnRegresarPersonal.Visible = false; } else { if ((string)Session["id_personal"] != null) { Cargar_Informacion_Personal(); btnRegresarClientes.Visible = false; } } } }
public CtrPersonal() { dao_personal = new DaoPersonal(); }