How to access Hidden field values.

hi friends,

I want to access the value of the hidden fields from first.jsp to second.jsp.

this is the code from first.jsp:

<%

for( i = 0 ; i< arrayList.size(); i++)

{

%>

<input type="radio" name="showQueryName" value="<%= arrayList.get(i)%>" onclick="return " ><%= arrayList.get(i)%>

<input type="hidden" name="queryId" value="<%= arrayList.getId() >

<%

}

%>

how to access the value of the hidden field to another page. the output of the arraylist can be of any size.

this radio button will be accessable to the user and how will i get which value have the user selected.

please tell how should i do it.">

[725 byte] By [java@mania] at [2007-11-27 11:48:05]
# 1

hi,

--

storevar = request.getParameter("queryld");

-

-

//first.jsp

<input type="hidden" name="queryld">

drvijayy2k2a at 2007-7-29 18:16:56 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2

Don't doublepost. http://forum.java.sun.com/thread.jspa?threadID=5199284

BalusCa at 2007-7-29 18:16:56 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...