| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="TrendToolEdit.aspx.cs"
- Inherits="CB.Admin.Plugins.TrendTool.TrendToolListEdit" %>
- <!DOCTYPE html>
- <html>
- <head>
- <title>过滤项配置</title>
- <link href="../../static/css/main.css" rel="stylesheet" type="text/css" />
- <script src="../../static/js/jquery.js" type="text/javascript"></script>
- </head>
- <body>
- <form id="form1" runat="server">
- <div class="box">
- <div class="title">
- <span>过滤项配置</span>
- </div>
- <div class="content">
- <div class="listtable">
- <table width="98%" border="0" align="center" cellpadding="0" cellspacing="0">
- <col width="100" />
- <col />
- <tr>
- <td>
- PageID
- </td>
- <td>
- <div class="left">
- <asp:HiddenField ID="txtConfigID" runat="server" />
- <asp:TextBox ID="txtPageID" runat="server"></asp:TextBox> <span style="color: Red;">(必填)</span>
- </div>
- </td>
- </tr>
- <tr>
- <td>
- 过滤项名称
- </td>
- <td>
- <div class="left">
- <asp:TextBox ID="txtFilterTypeName" runat="server"></asp:TextBox> <span
- style="color: Red;">(必填)</span>
- </div>
- </td>
- </tr>
- <tr>
- <td class="None">
- 枚举类型
- </td>
- <td>
- <div class="left">
- <asp:DropDownList ID="ddlFilterFunEnum" runat="server">
- </asp:DropDownList>
- <span style="color: Red;">(必填)</span>
- </div>
- </td>
- </tr>
- <tr>
- <td>
- 过滤项排序
- </td>
- <td>
- <div class="left">
- <asp:TextBox ID="txtFilterOrder" runat="server"></asp:TextBox> <span style="color: Red;">(必填)</span>
- </div>
- </td>
- </tr>
- <tr>
- <td>
- 过滤项编号
- </td>
- <td>
- <div class="left">
- <asp:TextBox ID="txtFilterNumber" runat="server"></asp:TextBox> <span
- style="color: Red;">(必填)</span>
- </div>
- </td>
- </tr>
- <tr>
- <td class="None">
- div或tr包括
- </td>
- <td>
- <div class="left">
- <asp:DropDownList ID="ddlIncludeHtml" runat="server">
- <asp:ListItem Value="tr">tr</asp:ListItem>
- <asp:ListItem Value="div">div</asp:ListItem>
- </asp:DropDownList>
- </div>
- </td>
- </tr>
- <tr>
- <td class="None">
- 页面分组
- </td>
- <td>
- <div class="left">
- <asp:DropDownList ID="ddlPageGroup" runat="server">
- <asp:ListItem Value="0">0</asp:ListItem>
- <asp:ListItem Value="1">1</asp:ListItem>
- </asp:DropDownList>
- </div>
- </td>
- </tr>
- <tr>
- <td>
- 过滤项类型
- </td>
- <td>
- <div class="left">
- <asp:DropDownList ID="ddlIsNorm" runat="server">
- <asp:ListItem Value="1" Selected="True">标准过滤</asp:ListItem>
- <asp:ListItem Value="2">特殊过滤</asp:ListItem>
- </asp:DropDownList>
- </div>
- </td>
- </tr>
- <tr>
- <td class="None">
- 是否基本数据
- </td>
- <td>
- <div class="left">
- <asp:DropDownList ID="ddlIsBaseData" runat="server">
- <asp:ListItem Value="false" Selected="True">否</asp:ListItem>
- <asp:ListItem Value="true">是</asp:ListItem>
- </asp:DropDownList>
- </div>
- </td>
- </tr>
- <tr>
- <td>
- 是否有效
- </td>
- <td>
- <div class="left">
- <asp:DropDownList ID="ddlFilterStatus" runat="server">
- <asp:ListItem Value="true" Selected="True">是</asp:ListItem>
- <asp:ListItem Value="false">否</asp:ListItem>
- </asp:DropDownList>
- </div>
- </td>
- </tr>
- <tr>
- <td class="None">
- 是否保存数据
- </td>
- <td>
- <div class="left">
- <asp:DropDownList ID="ddlFilterIsSave" runat="server">
- <asp:ListItem Value="true">是</asp:ListItem>
- <asp:ListItem Value="false" Selected="True">否</asp:ListItem>
- </asp:DropDownList>
- <span style="color: Red;">(必填)</span>
- </div>
- </td>
- </tr>
- <tr>
- <td>
- 头信息
- </td>
- <td>
- <div class="left">
- <asp:TextBox ID="txtFilterHeader" runat="server" TextMode="MultiLine" Width="600px"
- Height="70px"></asp:TextBox> <span style="color: Red;">(必填)</span></div>
- </td>
- </tr>
- <tr>
- <td>
- 描述信息
- </td>
- <td>
- <div class="left">
- <asp:TextBox ID="txtFilterRemark" runat="server" TextMode="MultiLine" Width="600px"
- Height="70px"></asp:TextBox> <span style="color: Red;">(必填)</span></div>
- </td>
- </tr>
- <tr>
- <td colspan="1">
- 操 作
- </td>
- <td>
- <div class="left">
- <asp:Button ID="btnUpdate" runat="server" Text=" 保 存 " OnClick="btnUpdate_Click" />
- <input type="button" value="返回项列表" onclick="BackList();" />
- </div>
- </td>
- </tr>
- </table>
- </div>
- </div>
- </div>
- </form>
- </body>
- </html>
- <script type="text/javascript" language="javascript">
- var BackList = function ()
- {
- window.location.href = "/admin/Plugins/TrendTool/TrendToolList.aspx?Id=" + $('#<%=txtPageID.ClientID %>').val() + "&authPage=TrendToolsPageList";
- }
-
-
- </script>
|