public MainWindow() { InitializeComponent(); cboSexo.ItemsSource = Enum.GetValues(typeof(TipoSexo)); cboSexo.SelectedIndex = 0; dao = new DaoPersona(); }
public wpfListar() { InitializeComponent(); try { DaoPersona dao = new DaoPersona(); dgvListar.ItemsSource = dao.Lista(); dgvListar.Items.Refresh(); } catch (Exception ex) { Logger.Mensaje(ex.Message); } }
protected void btnIngresar_Click(object sender, EventArgs e) { EntidadPersona ep = new EntidadPersona(); ep.nom_usuario = txtUsuario.Text.Trim(); ep.password = txtPassw.Text.Trim(); DaoPersona dao_usu = new DaoPersona(); DataTable dt = new DataTable(); dt = dao_usu.login(ep); if (dt.Rows.Count > 0) { string[] fecha = dt.Rows[0]["fechaNacimiento"].ToString().Split('/'); int tc = Convert.ToInt32(dt.Rows[0]["idTipoCuenta"]); Session["nombresC"] = dt.Rows[0]["apePaterno"] + " " + dt.Rows[0]["apeMaterno"] + ", " + dt.Rows[0]["nombres"]; Session["edad"] = Convert.ToInt32(DateTime.Today.Year) - Convert.ToInt32(fecha[2].Substring(0, 4)); Session["dni"] = dt.Rows[0]["dni"]; Session["cel"] = dt.Rows[0]["celular"]; Session["email"] = dt.Rows[0]["email"]; Session["foto"] = dt.Rows[0]["imagenPerfil"]; Session["estado"] = dt.Rows[0]["estadoCuenta"]; Session["nombre"] = dt.Rows[0]["nombres"]; Session["usuario"] = dt.Rows[0]["nom_usuario"]; if (tc == 1) { Session["tipoCuenta"] = "Administrador"; Response.Redirect("VistaAdmin/Default.aspx"); } else if (tc == 2) { Session["tipoCuenta"] = "Maestro"; Response.Redirect("VistaMaestro/Default.aspx"); } else { Session["tipoCuenta"] = "Visitante"; } } else { Response.Write("<script>alert('Usuario y contraseña inválida')</script>"); } }
protected void Page_Load(object sender, EventArgs e) { btnBotonEscondidoDeprovi.Attributes.Add("style", "DISPLAY: none"); GuardarDepartamentoProvinciaDistrito2.Attributes.Add("style", "DISPLAY: none"); try { string usuario = Session["id_persona"].ToString(); if (usuario == null) { Response.Redirect("~inicio.aspx"); } DaoPersona dao_persona = new DaoPersona(); if (!IsPostBack) { CargarMiInformacion(); CargarDepartamentos(); CargarProvincias(); CargarDistritos(); ddlDepartamentos.Visible = true; ddlProvincias.Visible = false; ddlDistritos.Visible = false; ddlDepartamentos.AutoPostBack = true; ddlProvincias.AutoPostBack = true; ddlDistritos.AutoPostBack = true; volver1.Visible = false; volver2.Visible = false; if ((string)Session["enviar_notificacion"] == "si") { EnviarNotificacion(); Session["enviar_notificacion"] = "no"; } } } catch { Session.Clear(); Session.Abandon(); Response.Redirect("~/inicio.aspx"); } }
protected void Page_Load(object sender, EventArgs e) { try { string usuario = Session["id_persona"].ToString(); if (usuario == null) { Response.Redirect("~inicio.aspx"); } DaoPersona dao_persona = new DaoPersona(); if (!IsPostBack) { CargarMiInformacion(); } } catch { Session.Clear(); Session.Abandon(); Response.Redirect("~/inicio.aspx"); } }
public CtrProfesor() { datprof = new DaoProfesor(); daotra = new DaoTrabajador(); daopers = new DaoPersona(); }
public CtrPersona() { dao_persona = new DaoPersona(); d_util = new DaoUtil(); }