开发者

This code is not submitting to a form? Why

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.

<form id="editClassList" name="editClassList" method="get" action="EditClassList">
<%
 HashMap<Integer,String> classes = new HashMap<Integer,String>();
 classes = (HashMap<Integer,String>) request.getAttribute("classes");
%>
<% 
  if(classes.size()==0){ %>
    <label><input class="small-link" type="text" id="add-this-class"
                  size="42" value="" /></label>  
<%
 }
%>
<%
  Set<Integer> classIds = new HashSet<Integer>();
  classIds = classes.keySet();
  Iterator<Integer> itr = classIds.iterator();
  while(itr.hasNext()){
      int nextId = (Integer)itr.next();
%>
  <label><input class="small-link" type="text" id="<% out.print(nextId); %>"
 开发者_运维百科               size="42" value="<% out.print(classes.get(nextId)); %>" />
  </label> 
  <img id="add-class" src="images/add.png" width="16" height="16" /><br />
  <label><input class="small-link" type="text" id="class-to-add"
        size="42" value="" /></label>  
<%
  }
%>
<label><input type="submit" id="save-class-btn" value="Save Class(es)" /></label>
</form>


A try: your input tags lacks the name attribute ?

<input name="data" class="small-link" type="text" id="class-to-add" size="42" value="" />
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜