I have a variable number of textboxes how do I retrieve their values in a servlet
Posted
by Ankur
on Stack Overflow
See other posts from Stack Overflow
or by Ankur
Published on 2010-03-08T07:46:20Z
Indexed on
2010/03/08
7:51 UTC
Read the original article
Hit count: 266
I have a number of textboxes that will be displayed with their existing values. I want my servlet to be able to get all their values and then update the database with the the values that have changed.
How do I get the values? Is there some way to put them into a HashMap with the id or name as the key and the value of the textbox as the value for the key?
© Stack Overflow or respective owner