tags:

views:

111

answers:

1

I want to pass data in multiple rows 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?

+3  A: 

You can use request.getParameterValues("name") to get a String[] with all values (not just the first one.

Thilo