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
<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Union.master.cs" Inherits="CY.WebForm.Pages.Alliance.Union" %>
 
<!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>
    <link href="../../Styles/Alliance.css" rel="stylesheet" type="text/css" />
    <link href="../../Styles/Public.css" rel="stylesheet" type="text/css" />
    <script src="../../js/utils/jquery-1.5.1.js" type="text/javascript"></script>
    <script type="text/javascript">
        $("#btn_login_desk").live("click", function () {
            var LoginId = $.trim($("#M_UserName").val());
            var PassWord = $("#M_LoginPassword").val();
            if (LoginId == "") {
                alert("帐号不能为空");
            } else if (PassWord == "") {
                alert("密码不能为空");
            } else {
                $("#TipsDesk").html("");
                $.ajax({
                    url: "/Pages/common/CommonAjax.aspx",
                    type: "POST",
                    dataType: "html",
                    data: { lg_datetype: "login", LoginId: LoginId, LoginPwd: PassWord },
                    global: false,
                    cache: false,
                    success: function (data) {
                        if (data == "success") {
                            window.location = location;
                        } else {
                            $("#TipsDesk").html(data);
                        }
                    }
                });
            }
        });
    </script>
    <script type="text/javascript">
        $(function () {
            $('.indexList2').each(function () {
                $(this).find('li:last').css('border', '0px');
            })
 
            if (document.body.clientHeight == document.body.scrollHeight) {
                $("body").css("min-height", document.body.scrollHeight + "px");
                $(".wal").css("min-height", (parseInt(document.body.scrollHeight)-109) + "px");
            }
        });
    </script>
    <asp:ContentPlaceHolder ID="head" runat="server">
    </asp:ContentPlaceHolder>
</head>
<body>
    <form id="form1" runat="server">
    <div class="wal">
        <uc:U_Head ID="U_Head1" runat="server" />
        <asp:ContentPlaceHolder ID="webmap" runat="server">
        </asp:ContentPlaceHolder>
        <div class="fl w700 MainShowInfo">
            <asp:ContentPlaceHolder ID="MainContent" runat="server">
            </asp:ContentPlaceHolder>
        </div>
        <div class="fr w280">
            <uc:U_Login ID="U_Login1" runat="server" />
            <uc:U_Contact ID="U_Contact1" runat="server" />
        </div>
        <span class="clear_f"></span>
    </div>
    <uc:U_Link ID="U_Link1" runat="server" />
    <uc:U_Foot ID="U_Foot1" runat="server" />
    </form>
</body>
</html>