-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFinishQuiz.jsp
110 lines (81 loc) · 2.18 KB
/
FinishQuiz.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>My JSP 'IntoQues.jsp' starting page</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<style type = "text/css">
body{
background-image:url("img/3.jpg")
}
.main{
width:820px;
margin-top:auto;
margin-right:auto;
margin-bottom:auto;
margin-left:auto;
}
.survey-wrap{
margin:80px auto auto;
line-height:22px;
text-align:center;
padding:80px;
border:1px solid;
}
.by{
background:url("img/good.png") center center no-repeat;
width:100%px;
height:240px;
}
.survey-finish-tip{
font-size:20px;
margin-top:30px;
margin-bottom:40px;
}
a:link{
background-color:#fef0c3;
}
a:visited{
background-color:#FFFF85;
}
a:hover{
background-color:#fef0c3;
}
a:active{
background-color:#fef0c3;
}
a{
text-decoration:none;
}
.survey-check-button{
cursor:point;
display:block;
font-weight:bold;
width:8px;
text-align:center;
padding:3px;
text-decoration:none;
font-size:10px;
}
</style>
</head>
<body>
<div class = "main">
<div class = "survey-wrap">
<div class = "by"></div>
<br>
<div class = "survey-finish-tip">您已完成本次答卷,感谢您的帮助与支持!</div>
<div class = "survey-check-botton"><a href = "http://localhost:8080/实训/PersonalReport.jsp">查看当前问卷填写结果</a></div>
</div>
</div>
</body>
</html>