jsp页面代码:
<form:form id="form1" name="form1" method="post"
action="${turnToSaveOutcomeViewURL}" enctype="multipart/form-data">
<table style="text-align: center; width: 100%;">
<tr>
<td class="tdRight">
成果类型:
</td>
<td class="tdLeft">
<select id="ocType" name="ocType">
<option value="1">
成果类型1
</option>
<option value="2">
成果类型2
</option>
</select>
</td>
</tr>
<tr>
<td class="tdRight">
成果名称:
</td>
<td class="tdLeft">
<input id="ocName" name="ocName" type="text"/>
</td>
</tr>
<tr>
<td class="tdRight">
获取时间:
</td>
<td class="tdLeft">
<input type="text" id="gotOCDate" name="gotOCDate"
onclick="new Calendar().show(document.getElementById('gotOCDate'));" />
</td>
</tr>
<tr>
<td class="tdCenter" colspan="2">
<a id="submitBtn1" class="majorButton"><span>提交</span> </a>
</td>
</tr>
</table>
</form:form>
后台获取各项值的代码:
Map<String, String[]> map = request.getParameterMap();
System.out.println(map.size());
System.out.println("map:ocName " + map.get("ocName")[0]);
System.out.println("map:ocType " + map.get("ocType")[0]);
System.out.println("map:gotOCDate " + map.get("gotOCDate")[0]);
控制台打印结果:
4
map:ocName asdfasdfasdfasdfasdfasd
map:ocType 1
map:gotOCDate 2012-08-30

用户通过jsp页面录入成果类型、名称及获取时间,页面采用表单提交方式,后台接收参数并打印验证。
947

被折叠的 条评论
为什么被折叠?



