username@email.com
2025-01-17 8d51a0762a43eedada5eb15bd24180d7204e63b3
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
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="AgSealPrint.aspx.cs" Inherits="CY.WebForm.Pages.business.AgSealPrint" %>
 
<!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 id="Head1" runat="server">
    <title>生成商业信函</title>
    <script src="../../js/utils/jquery-1.5.1.min.js" type="text/javascript"></script>
    <script src="../../js/common/util.js" type="text/javascript"></script>
    <script src="../../js/common/KeyBehaviorHook.js" type="text/javascript"></script>
    <script src="../../js/common/Printter.js" type="text/javascript"></script>
    <script src="../../js/common/LodopFuncs.js" type="text/javascript"></script>
    <style type="text/css">
        html { margin: 0px; padding: 0px; }
        *, html { font-size: 14px; color: #000; }
    </style>
    <script type="text/javascript">
        function PrintCorOrIntLetters() {
            //             var number = '<%=Request["Keyid"] %>';
            //                var sendfrom = '<%=Request["sendfrom"] %>';
            //                $.ajax({
            //                    url: "/Pages/common/CommonAjax.aspx",
            //                    type: "POST",
            //                    async: false,
            //                    data: { dateType:"print_cor_int",number: number, sendfrom: sendfrom },
            //                    success: function (dataStr) {
            //                        
            //                    }
            //                });
        }
 
        $(function () {
            $("#btnPrint").click(function () {
                var orderId = '<%=Request["orderid"] %>';
                $.ajax({
                    url: '/Pages/business/OrderDeatil.aspx?tmp' + (new Date()).valueOf(),
                    type: "POST",
                    async: false,
                    data: "Target=Printfengqian&orderIdStr=" + orderId,
                    success: function (dataStr) {
 
                    }
                });
            });
        });
    </script>
    <script type="text/javascript">
        $(function () {
            $(".EST_DIV").last().css("height", (parseInt($(".EST_DIV").last().height()) - 5)+"px");
        });
    </script>
</head>
<body style="width: 900px; margin-left: 110px; margin-top:50px; padding: 0px;">
    <object id="LODOP_OB" classid="clsid:2105C259-1E0C-4534-8141-A753534CB4CA" width="0" height="0">
        <embed id="LODOP_EM" type="application/x-print-lodop" width="0" height="0" pluginspage="/Pages/common/install_lodop32.exe"></embed>
    </object>
    <div id='div_tool'  printparams='3,2100,2970, "A4"' >
    </div>
    <div id="divPrintHtml" runat="server">
    </div>
</body>
</html>