username@email.com
2025-05-21 a980cd04341d71216e0f59bd4b7327fe9fc50032
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Success.aspx.cs" Inherits="CY.WebForm.Pages.front.Success" %>
 
<!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>
    <uc:FrontQuote ID="FrontQuote1" runat="server" />
   
    <script type="text/javascript">
        function Pay() {
            var orderId = $("#hidOrderId").val();
            var url = "/order/pay/" + orderId+".html";
            OpenSmallWindowByUrlUseRation(url);
        }
 
        $(
            function () {
                var hideIsPayed = $("#hideIsPayed").val();
                if (hideIsPayed == "-1") {
                    $("#btnPay").hide();
                    $(".word2").hide();
                    $(".word3").hide();
                    $("#spanSuccess").show();
                }
            }
        );
    </script>
</head>
<body>
    <form id="form1" runat="server">
    <input type="hidden" id="hidOrderId" runat="server" />
    <input type="hidden" id="hideIsPayed" runat="server" value=""/>
    <uc:FrontHead ID="FrontHead1" runat="server" />
    <div class="w1000 mainbox">
<%--    <div class="mt10"><a href="#"><img src="../../images/Common/longad.jpg" width="1000" height="110" /></a></div>--%>    
    <div class="path"><strong>当前位置:</strong><a href="/">网站首页</a> > <a href="InquiryIndex.aspx">询价首页</a> > 下单成功 </div>
    <table class="table2" style="width:100%;">
        <tr>
            <td style="padding: 20px 0px;">
                <img src="../../images/Common/SuccessOrder_02.jpg"></td>
        </tr>
        <tr>
            <td style="padding: 20px 0px;">您的订单号是:<span style="color:Red"><asp:Label ID="lblOrderCode" runat="server"></asp:Label></span>&nbsp;&nbsp;&nbsp;&nbsp; 应付金额:<span class="moneystyle">¥<asp:Label ID="lblOrderPrice" runat="server"></asp:Label></span></td>
        </tr>
        <tr>
            <td style="padding: 20px 0px;"><span class="word2">提示:</span><span class="word3">您的订单还未付款,订单7天之后未付款会自动取消!</span></td>
        </tr>
        <tr>
            <td style="padding: 20px 0px;">
                <label class="Btnb">
                    <input class="Btn GetMoney" id="btnPay" type="button" value="马上付款" onclick="Pay();"/></label>
                <span id="spanSuccess" style="color:Red;display:none">注意:已成功全部支付!</span>
            </td>
        </tr>
    </table>
     <!--nypartR over-->
    <p class="clear"></p>
    </div><!--mainbox Over-->
    <p class="clear"></p>
    <uc:FrontFoot ID="FrontFoot1" runat="server" />
    </form>
</body>
</html>