⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 payonline.jsp

📁 一个基于java工厂模式的 的实现
💻 JSP
字号:
<%@page contentType="text/html" pageEncoding="gb2312"%><html>    <head>        <meta http-equiv="Content-Type" content="text/html; charset=gb2312">        <title>网上银行支付</title>    </head>    <script>        function GotoICBCPay()        {            document.icbc.submit();            window.location="paynext.jsp";            return false;        }        function Sorry()        {            window.alert("对不起,该业务还未开通!建议使用工商银行的网上支付业务");            return false;                  }    </script>    <%        String orderid=request.getParameter("orderid");        String totalmoney=request.getParameter("totalmoney");        String returnURL="http://"+request.getServerName()+":"+request.getServerPort()+request.getContextPath()+"/servlets/payresultservlet";    %>    <body>                <table border="0" width="90%" height=100% cellpadding="1" cellspacing="1" align="center">             <TR>                <TD colspan="2">                    <jsp:include page="../includes/head.jsp"/>                </td>            </TR>            <TR>                <TD width="150" valign="top">                                      <jsp:include page="left.html"/>                                       </TD>                <TD align="center" height="100%" valign="top">                <table cellSpacing="1" cellPadding="1" width="500" border="0">                    <tr height="60">                        <td style="FONT-WEIGHT: bold; FONT-SIZE: large; COLOR: blue; TEXT-ALIGN: center" vAlign="middle">                            <FONT style="FONT-SIZE: medium" face="宋体">                                <span style="color:blue;font-size:Large;">选择网上银行支付</span>                            </FONT>                        </td>                    </tr>                    <tr height="20">                        <td style="HEIGHT: 20px" vAlign="bottom" align="center">                            <FONT style="FONT-SIZE: x-small" face="宋体">                                订单编号:<FONT style="FONT-SIZE: small" face="宋体">                                    <span style= "color:red;width:20%;FONT-WEIGHT: bold"><%=orderid%></span>                                 </FONT                                                    </FONT>                        </td>                    </tr>                    <tr height="40" valign="middle">                                       <td style="HEIGHT: 20px" vAlign="bottom" align="center">                            <FONT style="FONT-SIZE: x-small" face="宋体">                                总金额:<FONT style="FONT-SIZE: small" face="宋体">                                    <span style= "color:red;width:20%;FONT-WEIGHT: bold">¥<%=totalmoney%></span>                                 </FONT                            </FONT>                        </td>                                  </tr>                    <tr height=40>                        <td></td>                    </tr>                    <tr>                        <td align="center">                            <table border="0" width="500" align="center">                                                            <tr>                                    <td>                                       <form name="icbc" action="<%=application.getInitParameter("bank.icbc")%>" method="post" target="_blank">                                            <input type="image" src="../img/icon_icbc.gif" width="160" height="30" alt="工商银行" onclick="return GotoICBCPay()"/>                                            <input type="hidden" name="hdOrderID" value="<%=orderid%>" />                                            <input type="hidden" name="hdAmount" value="<%=totalmoney%>" />                                            <input type="hidden" name="hdCompanyID" value="8801" />                                            <input type="hidden" name="hdReturnURL" value="<%=returnURL%>" />                                        </form>                                    </td>                                                                   <td>                                                                              <input type="image" src="../img/icon_zsyh.gif" width="160" height="30" alt="招商银行"  onclick = "return Sorry()"/>                                                                       </td>                                </tr>                                <tr height = 50>                                    <td>                                                                            <input type="image" src="../img/icon_ccb.gif" width="160" height="30" alt="中国建设银行" onclick = "return Sorry()"/>                                    </td>                                    <td>                                                                           <input type="image" src="../img/icon_abc.gif" width="160" height="30" alt="中国农业银行" onclick = "return Sorry()"/>                                    </td>                                </tr>                                <tr height = 50>                                    <td>                                                                               <input type="image" src="../img/icon_cmbc.gif" width="160" height="30" alt="中国民生银行" onclick = "return Sorry()"/>                                    </td>                                    <td>                                                                             <input type="image" src="../img/icon_cib.gif" width="160" height="30" alt="兴业银行" onclick = "return Sorry()"/>                                    </td>                                </tr>                              <tr height = 50>                                    <td>                                                                           <input type="image" src="../img/icon_gdb.gif" width="160" height="30" alt="广东发展银行"onclick = "return Sorry()"/>                                    </td>                                    <td>                                                                      <input type="image" src="../img/icon_spdb.gif" width="160" height="30" alt="上海浦东发展银行" onclick = "return Sorry()"/>                                    </td>                                </tr>                                <tr height = 50>                                    <td>                                                                         <input type="image" src="../img/icon_sdb.gif" width="160" height="30" alt="深圳发展银行" onclick = "return Sorry()"/>                                    </td>                                    <td>                                                                  <input type="image" src="../img/icon_itic.gif" width="160" height="30" alt="中信银行" onclick = "return Sorry()"/>                                    </td>                                </tr>                                                                       </table>                        </td>                    </tr>                </table>                        </TR>                   <tr valign="top" height=20 align="center">                <td colspan="2" align="center">                    <jsp:include page="../includes/foot.jsp"/>                </td>            </tr>        </TABLE>        </body></html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -