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
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="MemberAcceptAddress.aspx.cs" Inherits="CY.WebForm.Pages.member.MemberAcceptAddress" %>
 
<!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:cmshead id="CMSHead1" runat="server" />
    <style type="text/css">
        .ReceiptTable { border: none; }
    </style>
</head>
<body>
    <form id="form1" runat="server">
    <div id="scrollContent" style="height: 195px;">
        <table class="tableStyle" usehover="false" useclick="false">
            <tr id="ReceiptT_Html">
                <td class="ali03" style="vertical-align: top;">
                </td>
                <td colspan="5" style="padding: 0;">
                </td>
            </tr>
            <tr>
                <td class="ali03">
                </td>
                <td colspan="5">
                    <asp:button id="btn_submit" onclick="btn_submit_info" text="提交" runat="server" />
                </td>
            </tr>
        </table>
    </div>
    </form>
    <script type="text/javascript">
        ReceiptT('member', '<%=targetid %>', 6, 120);
    </script>
    <script type="text/javascript">
        $(function () {
            $(".ReceiptTable").css("border", "none");
            $(".ReceiptTable").find("td").css("border-left", "none");
            parent.iframeHeight('frmrightChild');
        });
    </script>
</body>
</html>