TrendChartInfo.aspx 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="TrendChartInfo.aspx.cs" Inherits="CB.Admin.Plugins.TrendChartConfig.TrendChartInfo" %>
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5. <title>走势图配置管理</title>
  6. <link href="../../static/css/main.css" rel="stylesheet" type="text/css" />
  7. </head>
  8. <body>
  9. <form id="form1" runat="server">
  10. <div class="box">
  11. <div class="title">
  12. <span>走势图信息</span>
  13. </div>
  14. <div class="content">
  15. <div class="listtable">
  16. <table width="98%" border="0" align="center" cellpadding="0" cellspacing="0">
  17. <tr>
  18. <td width="100">
  19. 名称:
  20. </td>
  21. <td>
  22. <div class="left">
  23. <asp:TextBox ID="txtName" runat="server"></asp:TextBox>&nbsp;&nbsp;<span style="color: Red;">(必填)</span></div>
  24. </td>
  25. </tr>
  26. <tr>
  27. <td width="100">
  28. 彩种:
  29. </td>
  30. <td>
  31. <div class="left">
  32. <asp:DropDownList ID="ddlLotType" runat="server">
  33. <asp:ListItem Value="0">==请选择==</asp:ListItem>
  34. </asp:DropDownList>
  35. &nbsp;&nbsp;<span style="color: Red;">(必选)</span></div>
  36. </td>
  37. </tr>
  38. <tr>
  39. <td width="100">
  40. 图表类型:
  41. </td>
  42. <td>
  43. <div class="left">
  44. <asp:DropDownList ID="ddlTrendType" runat="server">
  45. <asp:ListItem Value="0">==请选择==</asp:ListItem>
  46. </asp:DropDownList>
  47. &nbsp;&nbsp;<span style="color: Red;">(必选)</span></div>
  48. </td>
  49. </tr>
  50. <tr>
  51. <td width="100">
  52. 状态:
  53. </td>
  54. <td>
  55. <div class="left">
  56. <asp:DropDownList ID="ddlStatus" runat="server">
  57. <asp:ListItem Value="-2">==请选择==</asp:ListItem>
  58. <asp:ListItem Value="-1">测试</asp:ListItem>
  59. <asp:ListItem Value="0">正常</asp:ListItem>
  60. <asp:ListItem Value="1">新</asp:ListItem>
  61. <asp:ListItem Value="2">热</asp:ListItem>
  62. </asp:DropDownList>
  63. </div>
  64. </td>
  65. </tr>
  66. <tr>
  67. <td width="100">
  68. 计算类型:
  69. </td>
  70. <td>
  71. <div class="left">
  72. <asp:DropDownList ID="ddType" runat="server">
  73. <asp:ListItem Value="-1">==请选择==</asp:ListItem>
  74. <asp:ListItem Value="0">通用配置</asp:ListItem>
  75. <asp:ListItem Value="1">非通用配置</asp:ListItem>
  76. <asp:ListItem Value="2">静态数据</asp:ListItem>
  77. <asp:ListItem Value="3">高频动态计算</asp:ListItem>
  78. </asp:DropDownList>
  79. </div>
  80. </td>
  81. </tr>
  82. <tr>
  83. <td width="100">
  84. 屏幕方向:
  85. </td>
  86. <td>
  87. <div class="left">
  88. <asp:DropDownList ID="ddlScreenDirection" runat="server">
  89. <asp:ListItem Value="0">==横屏==</asp:ListItem>
  90. <asp:ListItem Value="1">==竖屏==</asp:ListItem>
  91. </asp:DropDownList>
  92. </div>
  93. </td>
  94. </tr>
  95. <tr>
  96. <td>
  97. 排序:
  98. </td>
  99. <td>
  100. <div class="left">
  101. <asp:TextBox ID="txtOrderBy" runat="server"></asp:TextBox>&nbsp;&nbsp;<span style="color: Red;">(不填自动设置)</span></div>
  102. </td>
  103. </tr>
  104. <tr>
  105. <td>
  106. Title:
  107. </td>
  108. <td>
  109. <div class="left">
  110. <asp:TextBox ID="txtTitle" runat="server" TextMode="MultiLine" Width="600px" Height="70px"></asp:TextBox></div>
  111. </td>
  112. </tr>
  113. <tr>
  114. <td >
  115. Keywords:
  116. </td>
  117. <td >
  118. <div class="left">
  119. <asp:TextBox ID="txtKeywords" runat="server" TextMode="MultiLine" Width="600px" Height="70px"></asp:TextBox></div>
  120. </td>
  121. </tr>
  122. <tr>
  123. <td>
  124. Description:
  125. </td>
  126. <td>
  127. <div class="left">
  128. <asp:TextBox ID="txtDescription" runat="server" TextMode="MultiLine" Width="600px"
  129. Height="70px"></asp:TextBox></div>
  130. </td>
  131. </tr>
  132. <tr>
  133. <td>
  134. TemplateId:
  135. </td>
  136. <td>
  137. <div class="left">
  138. <asp:DropDownList ID="DDLtemplateid" runat="server">
  139. </asp:DropDownList>
  140. </div>
  141. </td>
  142. </tr>
  143. <tr>
  144. <td>
  145. 操作:
  146. </td>
  147. <td>
  148. <div class="left">
  149. <asp:Button ID="btnUpdate" runat="server" Text=" 保 存 " OnClick="btnUpdate_Click" /></div>
  150. <asp:Label ID="labID" runat="server" Text="0" Visible="false"></asp:Label>
  151. </td>
  152. </tr>
  153. </table>
  154. </div>
  155. </div>
  156. </div>
  157. </form>
  158. </body>
  159. </html>