QueryString Problem

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

[793 byte] By [honey_jal] at [2007-9-26 1:21:19]
# 1
MOVE the #$value AFTER the URI parameters<FRAME SRC="displayMessages.jsp?rn=<%=roomname%>#current" name="MessageWin">
punslappy at 2007-6-29 0:56:51 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
Thank you very much.Yes it worked. But I want to know if that particular frame source is refreshed after 10 seconds what will be the querystring because when that page is refreshed then it doesn't scroll down to #current.
honey_jal at 2007-6-29 0:56:51 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...