Reputation: 401
> System.out.println("Coming here for Voting");
> //response.sendRedirect("NewFile.html");-----> This is working
> response.sendRedirect("Survey.jsp");-------> THis is not working getting 404 error.
Both HTML and JSP in same default folder..ie
I tried with response.sendRedirect("./Survey.jsp") also not working getting 404
Upvotes: 0
Views: 150
Reputation: 504
Looks like your jsp file in the program is spelled Servey while your code is spelled Survey
Upvotes: 1