Re: About ComboBoxes (Urgent)
Posted By:
Anonymous
Posted On:
Monday, February 14, 2005 11:10 PM
simple approach:
store the values retreived from db into a Data Structure(like ArrayList or Vector,...)
In this case better to store this data structure in HttpSession(setAttribute() method). Use it whenever needed(using getAttribute() method) and finally delete it from the session(using removeAttribute() method) when it is not required.
Ohterwise,
Each time, all the combo box values should be retrieved from the db.
cheers,
-K.