请教关于表单提交的问题
请教问题,为什么当 form中的表单项任何一项有改变时,action会提交给servlet,获得新数据,但是如果form中所有表单项都保持默认数值不变的时候,action就好象不提交一样呢?
<form target="show" id="form1" name="form1" method="post" action="http://host/nms/showPic.jsp?linkId=<% out.print( linkId ); %>&portId=<% out.print( portId ); %>&fileName=<% out.print( rrdName ); %>&imagetype=jpg">
<label>开始时间
<input type="text" name="start" value=<% out.print( startReq ); %> />
</label>
<label>结束时间
<input type="text" name="end" value=<% out.print( endReq ); %> />
</label>
<p>
<label>图片高度
<input type="text" name="width" value="550" />
</label>
<label>图片宽度
<input type="text" name="height" value="350" />
</label>
<p>
<input type="submit" name="Submit" value="确定" />
</form>