第六周作业
1.
index.jsp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> < html > < head > < title >My JSP 'index.jsp' starting page</ title > </ head > < body > < form action="dl.jsp" method="post"> 用户名:< input type="text" name="uname" minlength="4" maxlenghth="16"/>只能输入字母或数字,4—6个字符 < br > 密码:< input type="password" name="upwd" maxlength="12" minlength="6"/>密码长度6-12< br > 确认密码:< input type="password" name="upawd">< br > 性别:< input type="radio" name="sex" value="男">男 < input type="radio" name="sex" value="女">女< br > 电子邮件地址:< input type="email" name="em" />输入正确的email地址< br > 出生日期:< input type="text" name="unyear"/>年 < select name="month"> < option value="1">一</ option > < option value="2">二</ option > < option value="3">三</ option > < option value="4">四</ option > < option value="5">五</ option > < option value="6">六</ option > < option value="7">七</ option > < option value="8">八</ option > < option value="9">九</ option > < option value="10">十</ option > < option value="11">十一</ option > < option value="12">十二</ option > </ select >月 < select name="day"> < option value="1">1</ option > < option value="2">2</ option > < option value="3">3</ option > < option value="4">4</ option > </ select >日< br > < input type="submit" value="同意协议条款并提交"/>< br > < textarea name="bz"rows="5"cols="50">一二三四一二三四一二三四一二三四一二三四一二三四一二三四一二三四一二三四一二三四一二三四一二三四一二三四</ textarea > </ form > </ body > </ html > |
xs.jsp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> < html > < head > < title >My JSP 'index.jsp' starting page</ title > </ head > < body > 您注册的信息如下:< br > <% request.setCharacterEncoding("utf-8"); String uname=request.getParameter("uname"); String upwd=request.getParameter("upwd"); String upawd=request.getParameter("upawd"); String sex=request.getParameter("sex"); String em=request.getParameter("em"); String unyear=request.getParameter("unyear"); String month=request.getParameter("month"); String day=request.getParameter("day"); %> <% if(upwd.equals(upawd)){%> 你注册的用户名是:<%=uname %>< br > 密码是:<%=upwd %>< br > 性别是:<%=sex %>< br > 电子邮件地址:<%=em %>< br > 出生日期:<%=unyear %>年<%=month %>月<%=day %>日< br > <% }else{ %> 两次不一致 <% }%> </ body > </ html > |
2.
index.jsp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> <% request.setCharacterEncoding("UTF-8"); response.setCharacterEncoding("UTF-8"); %> < head > </ head > < body > < form action="domarch.jsp" method="post"> < p >求平均值</ p > 姓名:< input type="text" name="name"/>< br > 性别:< input type="radio" name="sex" value="男"/>男 < input type="radio" name="sex" value="女"/>女< br > 班级:< select name="grade"> < option >101班</ option > < option >102班</ option > </ select >< br > 语文: < input type="text" name="chinese"/>< br > 数学: < input type="text" name="math"/>< br > 英语: < input type="text" name="english"/>< br > < input type="submit" name="提交"> < input type="reset" name="重置"> </ form > </ body > </ html > |
average.jsp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <% request.setCharacterEncoding("UTF-8"); response.setCharacterEncoding("UTF-8"); %> <! DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> < html > < body > <% String uname=request.getParameter("uname"); String sex=request.getParameter("sex"); String bj=request.getParameter("bj"); String bir=request.getParameter("bir"); String math=request.getParameter("math"); String chinese=request.getParameter("chinese"); String english=request.getParameter("english"); double a=Double.parseDouble(math); double b=Double.parseDouble(chinese); double c=Double.parseDouble(english); double arg=(a+b+c)/3; out.print("你好!"+bj+"的"+uname+"同学!"+"</ br >"+"性别:"+sex+"</ br >"+ "您的各科平均分数是:"+arg); %> </ body > </ html > |