質問編集履歴

1

ソースコードに不足があったので追記として再編集しました。また、実行結果も追加で載せました。

2020/11/09 12:55

投稿

Martin
Martin

スコア4

test CHANGED
File without changes
test CHANGED
@@ -417,3 +417,71 @@
417
417
  最終確認画面(jspファイルに直接書き込んだタイトルなどは表示できています)
418
418
 
419
419
  ![イメージ説明](71937893375eb11e695bb228c807d728.png)
420
+
421
+
422
+
423
+ 追加
424
+
425
+
426
+
427
+ ```Result.jsp
428
+
429
+ <%@ page language="java" contentType="text/html; charset=UTF-8"
430
+
431
+ pageEncoding="UTF-8"%>
432
+
433
+ <!DOCTYPE html>
434
+
435
+ <html>
436
+
437
+ <head>
438
+
439
+ <meta http-equiv="Content-Type" content="text/html; charset=euc-jp">
440
+
441
+ <title>Final Confirm</title>
442
+
443
+ <script type ="text/javascript"> </script>
444
+
445
+ </head>
446
+
447
+ <body>
448
+
449
+ <br><br>
450
+
451
+ Final Confirm Person Diteil<br><br>
452
+
453
+ <h1>Contents</h1>
454
+
455
+ <form method="Post" action="form1">
456
+
457
+ <table border="0" cellspacing="0" cellpadding="0" bgcolor="#000000">
458
+
459
+ <tr><td>
460
+
461
+ <table border="0" cellspacing="1" cellpadding="4">
462
+
463
+ <tr>
464
+
465
+ name:<%=request.getParameter("name") %><br>
466
+
467
+ Adress:<%=request.getParameter("Adress") %><br>
468
+
469
+ callphone:<%=request.getParameter("callphone") %><br>
470
+
471
+ nickname:<%=request.getParameter("nickname") %><br>
472
+
473
+ password:<%=request.getParameter("password") %><br>
474
+
475
+ </form>
476
+
477
+ </body>
478
+
479
+ </html>
480
+
481
+ ```
482
+
483
+
484
+
485
+ Resuly.jspを編集した結果以下の画面になり、真っ黒になってしまいました。
486
+
487
+ ![イメージ説明](4e4b50918afa01e9ddba0c4cf16158da.png)