I want to send table data from jsp to servlet.
Example the table structure is like
column1 column2
First Name
Second Name1
When i click on submit how can i retrieve or get the data in < td> tags First,Second, Name and Name1 values in servlet.
I searched but couldn't find any proper solution.
I want to know in how many ways i can achieve this. I searched about this and found we can achieve this using request.getParameter() or JSTL but didn't got any clear description
Please Suggest