Hi,

I have two jsp pages. : First.jsp Second.jsp

In First.jsp i do:

<input type="hidden" name="id" value="<%=u.getId()%>">
<jsp:forward page="Second.jsp"/>


In Second.jsp I need to access id :


String sId = request.getParameter("id");

When i do this ... i get sId = null. How do I pass this parameter from First.jsp to Second.jsp ?

Thanks.


--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to