HTML « Forward « JSP-Servlet Q&A





2. forward to jsp not working when trying to use HTML's *a name* link    coderanch.com

'forward' happens on the server and indicates that another resource will fill the request. '#' happens in the client (in the browser) and jumps to a tag in the page. The two aren't compatible. You may find that sendRedirect is what you are looking for. It sends a message to the client asking them to request the resource indicated, and should ...