I want to pass data in multiple r开发者_开发问答ows belongs to the same column id from one JSP page to another.
When i use request.getParameter("Name of the column id")
it retrieves only the first row.
How can i get values entered into all rows to my second JSP page?
You can use request.getParameterValues("name")
to get a String[]
with all values (not just the first one.
精彩评论