views:

58

answers:

1

Since I am using get I expect to see the submitted values appended to the queryString but instead all I see is the URL of the servlet being called with nothing added at the end.

classes = new HashMap(); classes = (HashMap) request.getAttribute("classes"); %> classIds = new HashSet(); classIds = classes.keySet(); Iterator itr = classIds.iterator(); while(itr.hasNext()){ int nextId = (Integer)itr.next(); %> " size="42" value="" />
+6  A: 

A try: your input tags lacks the name attribute ?

<input name="data" class="small-link" type="text" id="class-to-add" size="42" value="" />
PeterMmm
I'll try it out
Ankur
Thanks that was it
Ankur