Need help on dynamically add elements to combo box
Hello eveybody,
i plan to develop small webapplication in that i need to add elements dynamically to combobox.
in my servlet i wrote:
HttpSession session=request.getSession(false);
ArrayList<String> list=new ArrayList<String>();
list.add("Anil");
list.add("Sunil");
session.setAttribute("list", list);
in my jsp code i wrote:
<select>
<option value="names"><%=session.getAttribute("list") %></option>
</select>
when i deploy this application am getting null in my combo box .How can i add elements in dynamically.
plz help me ..
thanks in advance ..
regards,
Anil.

