Esempio n. 1
0
        protected void BotonLogin_Click(object sender, EventArgs e)
        {
            AutenticacionService aut = new AutenticacionService(TextBoxEmail.Text, TextBoxContraseña.Text);

            if (Convert.ToInt32(DropDownList1.SelectedValue) == 1)
            {
                if (aut.comprobarProfesor() == true)
                {
                    Session["usuario"] = aut.getProfesor();
                    Session["tipoUsuario"] = "p";

                    Response.Redirect("home-profesor.aspx");

                }
            }

            if (Convert.ToInt32(DropDownList1.SelectedValue) == 2)
            {

                if (aut.comprobarAlumno()==true&& RecaptchaControl1.IsValid ) //if (aut.comprobarAlumno()==true)&& RecaptchaControl1.IsValid
               {
                    Session["usuario"] = aut.getAlumno();
                    Session["tipoUsuario"] = "a";
                    Response.Redirect("home-alumno.aspx");
               }

            }
        }
Esempio n. 2
0
 protected void BotonModificarDatos_Click(object sender, EventArgs e)
 {
     PW3Entities ctx = new PW3Entities();
     AutenticacionService aut = new AutenticacionService(sesion.mail,sesion.contraseña);
     alumno al = (from a in ctx.alumno where a.mail == sesion.mail
                  select a).First();
     al.nombre = TexBoxNombre.Text;
     al.apellido = TextBoxApellido.Text;
     if (!TextBoxPassNuevaRe.Text.Trim().Equals(""))
     {
         al.contraseña = TextBoxPassNuevaRe.Text;
     }
     al.dni = TextBoxDNI.Text;
     ctx.SaveChanges();
     Session["usuario"] = aut.getAlumno();
     Response.Redirect("home-alumno.aspx");
 }