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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="AdEdit.aspx.cs" Inherits="CY.WebForm.Pages.InfoManage.AdEdit" %>
 
<!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>
    <uc:CMSHead ID="CMSHead1" runat="server" />
    <script src="../../js/business/AdEdit.js" type="text/javascript"></script>
</head>
<body>
    <form runat="server" id="form1" class="form2">
    <table class="tableStyle" style=" line-height:32px;">
        <tr>
            <td class="ali03 w100px">
                选择版块:
            </td>
            <td colspan="3">
                <asp:DropDownList runat="server" ID="selRemark" AutoPostBack="true" keepDefaultStyle="true" OnSelectedIndexChanged="changeRemarkGetLocation">
                </asp:DropDownList>
            </td>
        </tr>
        <tr>
            <td class="ali03 w100px">
                广告位置:
            </td>
            <td colspan="3">
                <asp:DropDownList runat="server" ID="selAdLocation" AutoPostBack="true" keepDefaultStyle="true" OnSelectedIndexChanged="changeLoctionGetTimeAndMoney">
                </asp:DropDownList>
            </td>
        </tr>
        <tr>
            <td class="ali03">
                选择客户:
            </td>
            <td colspan="3">
                <div style="width: 340px !important; height: 25px; overflow: hidden;">
                    <asp:TextBox  ID="txtCompanyName" runat="server" CssClass="req" style="float: left; width: 200px;" maxlength="20" AutoComplete="OFF"></asp:TextBox>
                    <input id="txtReset" runat="server" type="button" value="重置" style="float: left;" />
                    <input id="txtHideMemberId" type="hidden" runat="server" class="req" msg="请在客户提示框中选择一个客户" />
                </div>
                <div class="ShowCustormDIV"><ul id="ShowCustormList"></ul></div>
            </td>
        </tr>
        <tr>
            <td class="ali03 ">
                广告时长:
            </td>
            <td>
                <asp:DropDownList runat="server" ID="selTimeChange" AutoPostBack="true" keepDefaultStyle="true" OnSelectedIndexChanged="changeTimeGetStartAndEnd">
                <asp:ListItem Value="0">请选择</asp:ListItem>
                <asp:ListItem Value="1">一个月</asp:ListItem>
                <asp:ListItem value="3">一季度</asp:ListItem>
                <asp:ListItem value="6">半年</asp:ListItem>
                <asp:ListItem value="12">一年</asp:ListItem>
              </asp:DropDownList>
            </td>
            <td class="ali03 ">
                价格 (元):
            </td>
            <td>
               <asp:TextBox  ID="txtPrice" runat="server" CssClass="req" style="float: left; width: 100px;" maxlength="20" AutoCompleteType="None"></asp:TextBox>
            </td>
        </tr>
        <tr>
            <td class="ali03 ">
                广告开始时间:
            </td>
            <td>
               <span id="spanStartTime" runat="server"></span>
            </td>
            <td class="ali03 ">
                广告下架时间:
            </td>
            <td>
               <span id="spanEndTime" runat="server"></span>
            </td>
        </tr>
         
        <tr>
            <td class="ali03">
                广告名称:
            </td>
            <td  >
                <input type="text" id="txtAP_Title" runat="server" class="req w140px" maxlength="100" />
            </td>
            <td class="ali03 ">
                链接地址:
            </td>
            <td >
                <input type="text" id="txtA_Url" runat="server" class="req w140px" maxlength="100" />
            </td>
        </tr>
        <tr>
            <td class="ali03 ">
                排序:
            </td>
            <td>
                <input type="text" id="txtOrderNum" runat="server" class="int w40px" maxlength="5" value="0" />
            </td>
            <td class="ali03 ">
                是否新窗口:
            </td>
            <td>
                <select id="selA_IsTarget" runat="server" keepdefaultstyle="true">
                    <option value="true">是</option>
                    <option value="false">否</option>
                </select>
            </td>
        </tr>
        <tr>
            <td class="ali03 ">
                图片:
            </td>
            <td colspan="3">
                <input type="file" id="fileAP_DefaultImg" name="fileAP_DefaultImg" runat="server" keepdefaultstyle="true" /><a id="afileAP_DefaultImg" runat="server" target="_blank">点击查看图片</a>
            </td>
        </tr>
        <tr>
            <td class="ali02" colspan="4">
                <asp:Button ID="btn_Submit" Text="提交" runat="server" OnClick="btn_Submit_form" />
            </td>
        </tr>
    </table>
    </form>
</body>
</html>