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
2010-03-08 08:40:02
I'll try it out
Ankur
2010-03-08 08:41:29
Thanks that was it
Ankur
2010-03-08 09:51:55