How to get cell data of a specific row from the dynamically created HTML table in JSP?
I am creating JSP Page in the following way
- Connect to MySQL Databse
- Fetch rows from table based on criteria
- Construct HTML table dybamically based on the rows returned in step 2
- The first column of table contains checkbox
- JSP page contains a Submit button
- Select checkbox for some row(s)
- On Submit button click, How can i check which row checkbox is selected?