for example: page A want to get the variables from page B.
Page A
String suplTyp=request.getParameter("suplTyp");
String laNo=request.getParameter("laNo");
String projNo=request.getParameter("projNo");
String contNo=request.getParameter("contNo");
String clmNo=request.getParameter("clmNo");
String clmDte=request.getParameter("clmDte");
Page B
<table border=0 width=100%>
<tr><td>LA Number</td><td>: <%=laNo%></td></tr>
<tr><td>Project</td><td>: <%=projNo%></td></tr>
<td>Contractor</td><td>: <%=contNo%></td></tr>
<tr><td>Claim Number</td><td>: <%=clmNo%></td>
<td>Claim Date</td><td>: <%=clmDte%></td></tr>
</table>
put the values on a form like
this is at b.jsp
<form action="a.jsp">
<input type="hidden" name="clmNo" value="<%=clmNo%>" />
<input type="submit" value="submit" />
</form>
in a.jsp you can request for the value of the hidden name clmNo
with your code:
String clmNo=request.getParameter("clmNo");
let me know if you get it
i see.
and what if i at page A got a hyperlink for example
var newwindow;
function poptastic(url)
{
newwindow=window.open(url,'name','height=400,width=200,scrollbars=yes');
if (window.focus) {newwindow.focus()}
}
<a href="javascript:poptastic('material_on_siteV1.jsp');">Material on Site</a>
and when i click on the link, then 'material_on_siteV1.jsp' page will pop up and will get the variable from page A.