Exemple #1
0
 protected void btnCambiar_Click(object sender, EventArgs e)
 {
     if (inputPassword.Text == tbConfirmarContra.Text)
     {
         ObjEU      = (E_Usuario)Session["UsuarioRecuperacion"];
         ObjEU.Pass = inputPassword.Text;
         string msn = ObjNU.ModificarUsuario(ObjEU);
         Response.Redirect("../../index.aspx");
     }
 }