user1742919
user1742919

Reputation: 401

sendRedirect is not working for jsp but working for html page

> 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 enter image description here

I tried with response.sendRedirect("./Survey.jsp") also not working getting 404

Upvotes: 0

Views: 150

Answers (1)

Arachnid Hivemind
Arachnid Hivemind

Reputation: 504

Looks like your jsp file in the program is spelled Servey while your code is spelled Survey

Upvotes: 1

Related Questions