Problem using HTML bookmarks with jsp and <BASE> tag
Hi,
I have a JSP (abc.jsp) that has a <BASE href = "http://www.xyz.com" >. It also uses a html bookmark "abc.jsp#top" to provide a "Top" link for the user to go to the top of the page.
This page is viewed for the first time through a Request dispatcher's forward method from a Servlet. It uses some attributes by calling "request.getAttribute("...") method.
Now if the user clicks on the "Top" link, it goes to the jsp directly ( Not through the forward method of RequestDispatcher). It starts giving a problem in request.getAttributes.
How can I work around this problem? Any suggestions?
Thanks in advance!
Sridhar Mudugu

