Solved
JSP QueryString Problem
Posted on 2001-07-21
Hello,
I am using Tomcat 3.21 for JSP.
I am facing a problem with jsp. I want to send some information to other jsp page.
When I use a url like this in frame src:
<FRAME SRC="displayMessages.jsp#current?rn=<%=roomname%>" name="MessageWin">
other page is unable to retrive querystring value and
request.getParamter("rn") returns null
Then I have to use url like this to get that querystring value
<FRAME SRC="displayMessages.jsp?rn=<%=roomname%>" name="MessageWin">
I have to remove #current from the src attribute.
I want to include #current becuase I want to scroll page down to appropriate
place on displayMessage.jsp.
Is there any solution to this problem.
Sukhwinder Singh