My jsp page "view.jsp" has 5 values of cuid which I have turned all 5 into hyperlink. All these hyperlinks are getting redirected to the same page "modify.jsp" having input readonly field cuid. Now to get this readonly field's value, i am passing cuid from view.jsp to modify.jsp through hyperlink paramter "mcuid".
Now, the value is getting passed to the hyperlink fine. I confirmed this from my URL.
But I am unable to see this value in the cuid field in "modify.jsp". Below is the code I wrote for parameter passing.
1)view.jsp
<td><a href="modify.jsp?mcuid=<%out.print(utils.getCuid().get(i));%>"><%out.print(utils.getCuid().get(i));%></a></td>
2)modify.jsp
<td>Cuid :</td>
<td><input type="text" name="cuid" value="<%request.getParameter("mcuid");%>" readonly /></td>