| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="TrendChartInfo.aspx.cs" Inherits="CB.Admin.Plugins.TrendChartConfig.TrendChartInfo" %>
- <!DOCTYPE html>
- <html>
- <head>
- <title>走势图配置管理</title>
- <link href="../../static/css/main.css" rel="stylesheet" type="text/css" />
- </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">
- <tr>
- <td width="100">
- 名称:
- </td>
- <td>
- <div class="left">
- <asp:TextBox ID="txtName" runat="server"></asp:TextBox> <span style="color: Red;">(必填)</span></div>
- </td>
- </tr>
- <tr>
- <td width="100">
- 彩种:
- </td>
- <td>
- <div class="left">
- <asp:DropDownList ID="ddlLotType" runat="server">
- <asp:ListItem Value="0">==请选择==</asp:ListItem>
- </asp:DropDownList>
- <span style="color: Red;">(必选)</span></div>
- </td>
- </tr>
- <tr>
- <td width="100">
- 图表类型:
- </td>
- <td>
- <div class="left">
- <asp:DropDownList ID="ddlTrendType" runat="server">
- <asp:ListItem Value="0">==请选择==</asp:ListItem>
- </asp:DropDownList>
- <span style="color: Red;">(必选)</span></div>
- </td>
- </tr>
-
- <tr>
- <td width="100">
- 状态:
- </td>
- <td>
- <div class="left">
- <asp:DropDownList ID="ddlStatus" runat="server">
- <asp:ListItem Value="-2">==请选择==</asp:ListItem>
- <asp:ListItem Value="-1">测试</asp:ListItem>
- <asp:ListItem Value="0">正常</asp:ListItem>
- <asp:ListItem Value="1">新</asp:ListItem>
- <asp:ListItem Value="2">热</asp:ListItem>
- </asp:DropDownList>
- </div>
- </td>
- </tr>
- <tr>
- <td width="100">
- 计算类型:
- </td>
- <td>
- <div class="left">
- <asp:DropDownList ID="ddType" runat="server">
- <asp:ListItem Value="-1">==请选择==</asp:ListItem>
- <asp:ListItem Value="0">通用配置</asp:ListItem>
- <asp:ListItem Value="1">非通用配置</asp:ListItem>
- <asp:ListItem Value="2">静态数据</asp:ListItem>
- <asp:ListItem Value="3">高频动态计算</asp:ListItem>
- </asp:DropDownList>
- </div>
- </td>
- </tr>
- <tr>
- <td width="100">
- 屏幕方向:
- </td>
- <td>
- <div class="left">
- <asp:DropDownList ID="ddlScreenDirection" runat="server">
- <asp:ListItem Value="0">==横屏==</asp:ListItem>
- <asp:ListItem Value="1">==竖屏==</asp:ListItem>
- </asp:DropDownList>
- </div>
- </td>
- </tr>
- <tr>
- <td>
- 排序:
- </td>
- <td>
- <div class="left">
- <asp:TextBox ID="txtOrderBy" runat="server"></asp:TextBox> <span style="color: Red;">(不填自动设置)</span></div>
- </td>
- </tr>
- <tr>
- <td>
- Title:
- </td>
- <td>
- <div class="left">
- <asp:TextBox ID="txtTitle" runat="server" TextMode="MultiLine" Width="600px" Height="70px"></asp:TextBox></div>
- </td>
- </tr>
- <tr>
- <td >
- Keywords:
- </td>
- <td >
- <div class="left">
- <asp:TextBox ID="txtKeywords" runat="server" TextMode="MultiLine" Width="600px" Height="70px"></asp:TextBox></div>
- </td>
- </tr>
- <tr>
- <td>
- Description:
- </td>
- <td>
- <div class="left">
- <asp:TextBox ID="txtDescription" runat="server" TextMode="MultiLine" Width="600px"
- Height="70px"></asp:TextBox></div>
- </td>
- </tr>
- <tr>
- <td>
- TemplateId:
- </td>
- <td>
- <div class="left">
- <asp:DropDownList ID="DDLtemplateid" runat="server">
- </asp:DropDownList>
- </div>
- </td>
- </tr>
- <tr>
- <td>
- 操作:
- </td>
- <td>
- <div class="left">
- <asp:Button ID="btnUpdate" runat="server" Text=" 保 存 " OnClick="btnUpdate_Click" /></div>
- <asp:Label ID="labID" runat="server" Text="0" Visible="false"></asp:Label>
- </td>
- </tr>
- </table>
- </div>
- </div>
- </div>
- </form>
- </body>
- </html>
|