JSP与form有关的常用标签实例
程序员文章站
2022-04-10 14:56:14
...
userInfo.html用来得到用户的基本信息:
showInfo.jsp得到值并显示出来:
运行时居然将userInfo.html放错目录了,几次没成功,汗~
<html>
<head>
<title>用户信息</title>
</head>
<body>
<form name="Example" method="post" action="showInfo.jsp">
<p>姓名:<input type="text" name="name" size="15" maxlength="15"></p>
<p>密码:<input type="password" name="psw" size="15" maxlength="15"></p>
<p>性别:<input type="radio" name="sex" value="male" checked>男
<input type="radio" name="sex" value="female">女
</p>
<p>年龄:
<select name="age">
<option value="10">10-20</option>
<option value="20" selected>21-30</option>
<option value="30">31-40</option>
<option value="40">41-65</option>
</select>
</p>
<p>兴趣:
<input type="checkbox" name="habit" value="Read">
看书
<input type="checkbox" name="habit" value="Football">
足球
<input type="checkbox" name="habit" value="Travel">
旅游
<input type="checkbox" name="habit" value="Music">
听音乐
<input type="checkbox" name="habit" value="Tv">
看电视</p>
<p>
<input type="submit" value="传送">
<input type="reset" value="清除">
</p>
</form>
</body>
</html>
showInfo.jsp得到值并显示出来:
<%@ page contentType="text/html;charset=UTF-8" language="java"%>
<%
request.setCharacterEncoding("UTF-8");
%>
<html>
<head>
<title>显示用户信息</title>
</head>
<body>
姓名:<%=request.getParameter("name") %><br>
密码:<%=request.getParameter("psw") %><br>
性别:<%
String sex=request.getParameter("sex");
if(sex.equals("male"))
out.println("男");
else
out.println("女");
%><br>
年龄:<%
int ag=Integer.parseInt(request.getParameter("age"));
switch(ag){
case 10:out.println("10-20");break;
case 20:out.println("21-30");break;
case 30:out.println("31-40");break;
case 40:out.println("41-65");break;
default:out.println("error");break;
}
%>
<br>
兴趣:<%
String hab[]=request.getParameterValues("habit");
for(int i=0;i<hab.length;i++){
if(hab[i].equals("Read"))
out.println("看书 ");
if(hab[i].equals("Football"))
out.println("足球 ");
if(hab[i].equals("Travel"))
out.println("旅游 ");
if(hab[i].equals("Music"))
out.println("音乐 ");
if(hab[i].equals("Tv"))
out.println("看电视 ");
}
%>
<br>
</body>
</html>
运行时居然将userInfo.html放错目录了,几次没成功,汗~
上一篇: 使用Node.js实现ORM的一种思路
下一篇: CentOS6自定义服务控制脚本