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
|
<?php header("Content-Type:text/html; charset=utf-8;"); ?> <!DOCTYPE html> <html> <head> <title>NICEPAY CANCEL REQUEST(UTF-8)</title> <meta charset="utf-8"> <style> html,body {height: 100%;} form {overflow: hidden;} </style> <script type="text/javascript"> function reqCancel(){ document.cancelForm.submit(); } </script> </head> <body> <form name="cancelForm" method="post" target="_self" action="cancelResult_utf.php"> <table> <tr> <th>원거래 ID</th> <td><input type="text" name="TID" value="" /></td> </tr> <tr> <th>취소 금액</th> <td><input type="text" name="CancelAmt" value="" /></td> </tr> <tr> <th>부분취소 여부</th> <td> <input type="radio" name="PartialCancelCode" value="0" checked="checked"/> 전체취소 <input type="radio" name="PartialCancelCode" value="1"/> 부분취소 </td> </tr> </table> <a href="#" onClick="reqCancel();">요 청</a> </form> </body> </html>
|