質問編集履歴
1
end.jspを載せ忘れました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -219,3 +219,39 @@
|
|
219
219
|
|
220
220
|
|
221
221
|
```
|
222
|
+
|
223
|
+
|
224
|
+
|
225
|
+
end.jsp
|
226
|
+
|
227
|
+
```JSP
|
228
|
+
|
229
|
+
<?xml version="1.0" encoding="UTF-8" ?>
|
230
|
+
|
231
|
+
<%@ page language="java" contentType="text/html; charset=UTF-8"
|
232
|
+
|
233
|
+
pageEncoding="UTF-8"%>
|
234
|
+
|
235
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
236
|
+
|
237
|
+
<html xmlns="http://www.w3.org/1999/xhtml">
|
238
|
+
|
239
|
+
<head>
|
240
|
+
|
241
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
242
|
+
|
243
|
+
<title>ありがとうございました</title>
|
244
|
+
|
245
|
+
</head>
|
246
|
+
|
247
|
+
<body>
|
248
|
+
|
249
|
+
<h1><%=request.getAttribute("message")%></h1>
|
250
|
+
|
251
|
+
<a href="home.jsp">ホームへ戻る</a>
|
252
|
+
|
253
|
+
</body>
|
254
|
+
|
255
|
+
</html>
|
256
|
+
|
257
|
+
```
|