code055.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>问卷调查表</title>
</head>
<body>
<form action="code056.jsp" method="post">
<div>
<h1>调查问卷</h1>
<hr>
<ul>
<li>你经常使用的编程语言有哪些:</li>
<li>
<input type="checkbox" name="languages" value="JAVA" id="lan01"><label for="lan01">JAVA</label>
<input type="checkbox" name="languages" value="PHP" id="lan02"><label for="lan02">PHP</label>
<input type="checkbox" name="languages" value=".NET" id=lan03><label for="lan03">.NET</label>
<input type="checkbox" name="languages" value="C++" id="lan04"><label for="lan04">C++</label>
</li>
</ul>
<ul>
<li>你目前掌握的技术有哪些:</li>
<li>
<input type="checkbox" name="technics" value="HTML" id="te01"><label for="te01">HTML</label>
<input type="checkbox" name="technics" value="CSS" id="te02"><label for="te02">CSS</label>
<input type="checkbox" name="technics" value="Javascript" id="te03"><label for="te03">Javascript</label>
<input type="checkbox" name="technics" value="JSP" id="te04"><label for="te04">JSP</label>
</li>
</ul>
<ul>
<li>在学习中哪一部分感觉有困难:</li>
<li>
<input type="checkbox" name="parts" value="JAVA" id="pa01"><label for="pa01">JAVA</label>
<input type="checkbox" name="parts" value="PHP" id="pa02"><label for="pa02">PHP</label>
<input type="checkbox" name="parts" value=".NET" id="pa03"><label for="pa03">.NET</label>
<input type="checkbox" name="parts" value="C++" id="pa04"><label for="pa04">C++</label>
</li>
</ul>
<input type="submit" name="submit" value="提交">
</div>
</form>
</body>
</html>