username@email.com
2022-01-21 b18a7c8e54b51a5caa400e55cb8cc428c0301a0c
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="PaperpriceTool.aspx.cs"
    Inherits="CY.WebForm.Pages.sysInquiry.PaperpriceTool" %>
 
<!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" />
    <!--框架必需start-->
    <link href="../../libs/css/import_basic.css" rel="stylesheet" type="text/css" />
    <link href="../../libs/skins/blue/style.css" rel="stylesheet" type="text/css" id="theme"
        themecolor="blue" />
    <link href="/Pages/common/skin/style.css" rel="stylesheet" type="text/css" id="skin"
        skinpath="/Pages/common/skin/" />
    <script type="text/javascript" src="../../libs/js/jquery.js"></script>
    <script type="text/javascript" src="../../libs/js/bsFormat.js"></script>
    <link href="../../libs/css/import_basic.css" rel="stylesheet" type="text/css" />
    <!--框架必需end-->
    <!--引入弹窗组件start-->
    <script type="text/javascript" src="../../libs/js/popup/drag.js"></script>
    <script type="text/javascript" src="../../libs/js/popup/dialog.js"></script>
    <!--引入弹窗组件end-->
</head>
<body style="overflow-y: scroll; overflow-x:hidden;" id="mainDiv">
    <form id="form1" runat="server">
    <uc:FrontHead ID="FrontHead1" runat="server" />
    <div class="w1000 mainbox">
        <div class="mt10 DivAd" value_forumname="其他" value_locationname="工具助手顶部横幅广告"></div>
         <div class="path" style=" margin-bottom:10px">
            <strong>当前位置:</strong><a href="/">网站首页</a> > 工具助手</div>
                <iframe scrolling="auto" width="100%" frameborder="0" name="Ifr2" id="Ifr2" onload="iframeHeight('Ifr2')"
            src="/Pages/sysInquiry/PriceTool.aspx" allowtransparency="true"></iframe>
         </div>
    <div class="footer">
        <div class="links" id="divFootHelpHtml" runat="server">
        </div>
        <div id="divFootInfo" runat="server">
        </div>
    </div>
    </form>
  
    
    <script type="text/javascript">
        var ifram = document.getElementById('Ifr2');
 
        if (!Array.prototype.map)
            Array.prototype.map = function (fn, scope) {
                var result = [], ri = 0;
                for (var i = 0, n = this.length; i < n; i++) {
                    if (i in this) {
                        result[ri++] = fn.call(scope, this[i], i, this);
                    }
                }
                return result;
            };
 
        var getWindowSize = function () {
            return ["Height", "Width"].map(function (name) {
                return window["inner" + name] ||
    document.compatMode === "CSS1Compat" && document.documentElement["client" + name] || document.body["client" + name]
            });
        }
        window.onload = function () {
            if (! +"\v1" && !document.querySelector) { // for IE6 IE7
                document.body.onresize = resize;
            } else {
                window.onresize = resize;
            }
            function resize() {
                wSize();
                return false;
            }
        }
 
        function wSize() {
            //这是一字符串
            var str = getWindowSize();
            var strs = new Array(); //定义一数组
            strs = str.toString().split(","); //字符分割
            var heights = strs[0], Body = $('body');
            $('body').height(heights);
        }
        wSize();
    </script>
</body>
</html>