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.">

