protected void btnRegistrar_Click(object sender, EventArgs e)
        {
            var sex = cmbSexo.SelectedItem.Value;
            var usu = (from usua in contexto.tblUsuario
                       where usua.strUsuario == txtCorreo.Text
                       select usua).FirstOrDefault();

            if (usu == null)
            {
                tblEmpleado empl = new tblEmpleado();
                empl.strNombre    = txtNombre.Text.ToUpper();
                empl.strApellidoP = txtAPaterno.Text.ToUpper();
                empl.strApellidoM = txtAMaterno.Text.ToUpper();
                empl.strEdad      = txtEdad.Text;
                empl.strSexo      = sex;
                empl.strCorreo    = txtCorreo.Text;
                empl.idActivo     = 1;
                ControllerEmpleado ctrlEmpl = new ControllerEmpleado();
                ctrlEmpl.InsertarEmpleado(GetDatosVista(empl));
                this.ClientScript.RegisterStartupScript(this.GetType(), "SweetAlert", "exito()", true);
                this.LimpiarCampos();
            }
            else
            {
                this.ClientScript.RegisterStartupScript(this.GetType(), "SweetAlert", "alerta()", true);
            }
        }