I tried this but does not display the message only redirects login.jsp
<form method="post" action="Login_Servlet" >
<input name="idUsuario" type="text"/>
<input name="password" type="password" />
<button type="submit">Entrar</button>
</form>
Login_Servlet
response.setContentType("text/html;charset=UTF-8");
PrintWriter out = response.getWriter();
String userid= request.getParameter("idUser");
String password = request.getParameter("password");
Login_Service login_Service = new Login_Service();
boolean result = login_Servicio.aut(userid, password);
Usuario user = login_Servicio.getUsuariosByUsuario(userid);
if(result == true){
request.getSession().setAttribute("user", user);
response.sendRedirect("vistas/Inicio.jsp");
}
else{
out.println("<script type=\"text/javascript\">");
out.println("alert('User or password incorrect');");
out.println("</script>");
response.sendRedirect("index.jsp");
}
Is it possible to display a message like this? if so I'm doing wrong?
You may possibly do this:
Edited: 20th March 2018, 08:19 IST
OR without using js
You could redirect to your jsp but pass a message to be displayed:
Then in the jsp:
The not empty syntax allows checking for the existence of a parameter
From Servlet, redirect to another jsp normally as you do, and on jsp "onload" event call a javascript function which will give you the alert you need.....