4/23 ok, same problm as question below, but different approach.
Is there any existing tool that extract <input> html tag
and generate javabean automatically?
\_ this question probably means you're missing something.
Look up the ServletRequest api for getParameterValues and
getParameter-- you can name all your form inputs the same and
get them back as an array. This works well for a feedback
survey with 50 questions where all the answers are something
like "Strongly Agree" "Agree" "Disagree"-- name your radiobuttons
surveyAnswer, and if surveyAnswer[3] == 2, then someone
strongly agreed w/ statement 4. |