username@email.com
2025-05-14 99ddfbcecf0fa2881eb3a91028257eef87dab6de
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
42
43
44
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="OrderWinShower.aspx.cs"
    Inherits="CY.WebForm.Pages.OrderWinShower" %>
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>下单信息反馈界面</title>
    <script src="../../js/utils/jquery-1.5.1.min.js" type="text/javascript"></script>
    <script src="../../js/front/jquery.js" type="text/javascript"></script>
    <script src="../../js/utils/sM.js" type="text/javascript"></script>
    <script src="../../js/common/util.js" type="text/javascript"></script>
    <link href="../../Styles/base.css" rel="stylesheet" type="text/css" />
    <link href="../../Styles/changes.css" rel="stylesheet" type="text/css" />
    <link href="../../css/sM.css" rel="stylesheet" type="text/css" />
    <script type="text/javascript">
    var winInfo=[<%=Request.RequestContext.RouteData.DataTokens["ResultInfo"] %>];
    $(function(){
        if(0==winInfo.length){alert('页面发生错误!'); return;}
document.getElementById('spn_orderid').innerHTML=winInfo[0].orderId;
document.getElementById('spn_payedMoney').innerHTML=winInfo[0].sumprice;
        document.getElementById('link_gotolookfast').onclick=function(){
            ShowOrder(winInfo[0].id);
        };
        document.getElementById('link_gotolook').onclick=function(){
            window.location="/order/pay/" + winInfo[0].id + ".html";
        };
    });
    </script>
</head>
<body>
    <div id='div_WinResult' class="nyrC" style='width:100%;'>
        <div class="OK">
            订单提交成功!</div>
        <div class="OKinfos">
            您的订单号:<strong class="cb0" title='点击查看订单详情'><a id='link_gotolookfast'><font id='spn_orderid'>201207031225</font></a></strong>&nbsp;&nbsp;&nbsp;&nbsp;应付金额:<strong
                class="cb0">¥<font id='spn_payedMoney'>23214</font></strong>&nbsp;&nbsp;&nbsp;&nbsp;支付方式:<strong
                    class="cb0">网站余额</strong><br />
            <strong class="cb0">温馨提示:</strong>在线支付订单交易完成后会有一定比例的奖励反馈哦!
        </div>
        <div class="controlBox">
            <a id='link_gotolook'>立即支付 >>></a></div>
    </div>
</body>
</html>