Ciao! Questa è la mia form di login,controllata dalla jsp chiamata "check".
La mia domanda è: Come faccio a reindirizzare la pagina alla home,una volta che mi dice "Loggato con successo"?
CHECK.jspcodice:<form action="check.jsp" method="post"> <input type="text" name="user"> <input type="password" name="psw"> <input type="submit"> </form>
codice:<% boolean loggato; if (loggato = "tw2009".equals(request.getParameter("psw"))) { String loginUsername = request.getParameter("user"); session.setAttribute("loginAtt", loginUsername);} %> <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>CHECK</title> </head> <body> <% if (loggato){ %> utente = <%= session.getAttribute("loginAtt")%> <p>LOGGATO CON SUCCESSO </p> <% } else { %> <p> PASSWORD ERRATA </p> <% } %> </body> </html>