質問編集履歴
1
ソースコードに不足があったので追記として再編集しました。また、実行結果も追加で載せました。
title
CHANGED
File without changes
|
body
CHANGED
@@ -207,4 +207,38 @@
|
|
207
207
|

|
208
208
|
|
209
209
|
最終確認画面(jspファイルに直接書き込んだタイトルなどは表示できています)
|
210
|
-

|
210
|
+

|
211
|
+
|
212
|
+
追加
|
213
|
+
|
214
|
+
```Result.jsp
|
215
|
+
<%@ page language="java" contentType="text/html; charset=UTF-8"
|
216
|
+
pageEncoding="UTF-8"%>
|
217
|
+
<!DOCTYPE html>
|
218
|
+
<html>
|
219
|
+
<head>
|
220
|
+
<meta http-equiv="Content-Type" content="text/html; charset=euc-jp">
|
221
|
+
<title>Final Confirm</title>
|
222
|
+
<script type ="text/javascript"> </script>
|
223
|
+
</head>
|
224
|
+
<body>
|
225
|
+
<br><br>
|
226
|
+
Final Confirm Person Diteil<br><br>
|
227
|
+
<h1>Contents</h1>
|
228
|
+
<form method="Post" action="form1">
|
229
|
+
<table border="0" cellspacing="0" cellpadding="0" bgcolor="#000000">
|
230
|
+
<tr><td>
|
231
|
+
<table border="0" cellspacing="1" cellpadding="4">
|
232
|
+
<tr>
|
233
|
+
name:<%=request.getParameter("name") %><br>
|
234
|
+
Adress:<%=request.getParameter("Adress") %><br>
|
235
|
+
callphone:<%=request.getParameter("callphone") %><br>
|
236
|
+
nickname:<%=request.getParameter("nickname") %><br>
|
237
|
+
password:<%=request.getParameter("password") %><br>
|
238
|
+
</form>
|
239
|
+
</body>
|
240
|
+
</html>
|
241
|
+
```
|
242
|
+
|
243
|
+
Resuly.jspを編集した結果以下の画面になり、真っ黒になってしまいました。
|
244
|
+

|