質問するログイン新規登録

質問編集履歴

1

end.jspを載せ忘れました。

2021/06/01 10:04

投稿

退会済みユーザー
title CHANGED
File without changes
body CHANGED
@@ -108,4 +108,22 @@
108
108
  public static int count = 0;
109
109
  }
110
110
 
111
+ ```
112
+
113
+ end.jsp
114
+ ```JSP
115
+ <?xml version="1.0" encoding="UTF-8" ?>
116
+ <%@ page language="java" contentType="text/html; charset=UTF-8"
117
+ pageEncoding="UTF-8"%>
118
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
119
+ <html xmlns="http://www.w3.org/1999/xhtml">
120
+ <head>
121
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
122
+ <title>ありがとうございました</title>
123
+ </head>
124
+ <body>
125
+ <h1><%=request.getAttribute("message")%></h1>
126
+ <a href="home.jsp">ホームへ戻る</a>
127
+ </body>
128
+ </html>
111
129
  ```