I'm trying to retrieve mulitple checked value, which are being showed in JSP dynamically, retrieved from inbox folder of the mail server, just like in yahoo, or gmail. But whenever I select multiple checkboxes(or either one), I'm not able to retrieve their values, like subject and username. What should I have to do in JSP to retrieve those values in another JSP dynamically?
feedback
|
|
Each check-box in a form should have the same name but different value. e.g.
Then when your form gets posted, you can use
You may need to check for In the previous example, if you check You can use these values then to retrieve other pieces of your puzzle, like subject and username. | |||
|
feedback
|