ColumnEdit.aspx 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ColumnEdit.aspx.cs" Inherits="CB.Admin.Plugins.SpecialColumn.ColumnEdit" %>
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5. <title>专题详细</title>
  6. <link href="../../static/css/main.css" rel="stylesheet" type="text/css" />
  7. <script src="../../static/js/jquery.js" type="text/javascript"></script>
  8. </head>
  9. <body>
  10. <form id="form1" runat="server">
  11. <div class="box">
  12. <div class="title">
  13. <span>@专题详细</span>
  14. </div>
  15. <div class="content">
  16. <div class="listtable">
  17. <table width="98%" border="0" align="center" cellpadding="0" cellspacing="0">
  18. <tr>
  19. <td width="100">名称:</td>
  20. <td width="300"><div class="left">
  21. <asp:TextBox ID="txtName" runat="server"></asp:TextBox>&nbsp;&nbsp;<span style="color: Red;">(必填)</span></div></td>
  22. <td rowspan="5"><div class="left" style="text-align:left;">
  23. <asp:Image ID="imglogo" runat="server" Height="200px" Width="210px" /><br />
  24. 上传Logo:<asp:FileUpload ID="upfile" runat="server" Width="250px" />
  25. <asp:Button ID="btnUpload" runat="server" Text="上传" onclick="btnUpload_Click" />
  26. &nbsp;&nbsp;<asp:Label ID="lblmes" runat="server" Text=""></asp:Label>
  27. <br /><span style="color:#ff0000;"> * 允许.jpg.gif.jepg格式图片上传,图片不超过1M</span></div>
  28. </td>
  29. </tr>
  30. <tr>
  31. <td>URL重写:</td>
  32. <td><div class="left">
  33. <asp:TextBox ID="txtRewriteUrl" runat="server"></asp:TextBox>&nbsp;&nbsp;<span style="color: Red;">必填</span></div></td>
  34. </tr>
  35. <tr>
  36. <td>彩种:</td>
  37. <td><div class="left">
  38. <asp:DropDownList ID="ddlLottery" runat="server">
  39. <asp:ListItem Value="">==请选择==</asp:ListItem>
  40. <asp:ListItem Value="3d">福彩3D</asp:ListItem>
  41. <asp:ListItem Value="ssq">双色球</asp:ListItem>
  42. <asp:ListItem Value="dlt">大乐透</asp:ListItem>
  43. <asp:ListItem Value="p3">排列三</asp:ListItem>
  44. </asp:DropDownList>&nbsp;&nbsp;<span style="color: red;">(必填)</span></div></td>
  45. </tr>
  46. <tr>
  47. <td>类型:</td>
  48. <td><div class="left">
  49. <asp:DropDownList ID="ddlType" runat="server">
  50. <asp:ListItem Value="">==请选择==</asp:ListItem>
  51. <asp:ListItem Value="tuku">图库类</asp:ListItem>
  52. <asp:ListItem Value="article">文章类</asp:ListItem>
  53. <asp:ListItem Value="tool">工具类</asp:ListItem>
  54. <asp:ListItem Value="rule">规则类</asp:ListItem>
  55. <asp:ListItem Value="opencode">开奖类</asp:ListItem>
  56. </asp:DropDownList>&nbsp;&nbsp;<span style="color: Red;">(必填)</span></div></td>
  57. </tr>
  58. <tr>
  59. <td>热度:</td>
  60. <td><div class="left">
  61. <asp:TextBox ID="txtStatus" runat="server"></asp:TextBox>&nbsp;&nbsp;<span style="color:Red;">*为0时禁用专题</span></div></td>
  62. </tr>
  63. <tr>
  64. <td>专题关键字:</td>
  65. <td colspan="2"><div class="left">
  66. <asp:TextBox ID="txtWords" runat="server" Width="500px" Height="60px" TextMode="MultiLine"></asp:TextBox></div></td>
  67. </tr>
  68. <tr>
  69. <td>专题描述:</td>
  70. <td colspan="2"><div class="left">
  71. <asp:TextBox ID="txtAbout" runat="server" Width="500px" Height="60px" TextMode="MultiLine"></asp:TextBox>&nbsp;&nbsp;<span style="color: Red;">*可包含HTML代码</span></div></td>
  72. </tr>
  73. <tr>
  74. <td>hTitle:</td>
  75. <td colspan="2"><div class="left">
  76. <asp:TextBox ID="txtTitle" runat="server" Width="500px" Height="60px" TextMode="MultiLine"></asp:TextBox></div></td>
  77. </tr>
  78. <tr>
  79. <td>hKeywords:</td>
  80. <td colspan="2"><div class="left">
  81. <asp:TextBox ID="txtKeywords" runat="server" Width="500px" Height="60px" TextMode="MultiLine"></asp:TextBox></div></td>
  82. </tr>
  83. <tr>
  84. <td>hDescription:</td>
  85. <td colspan="2"><div class="left">
  86. <asp:TextBox ID="txtDescription" runat="server" Width="500px" Height="60px" TextMode="MultiLine"></asp:TextBox></div></td>
  87. </tr>
  88. <tr>
  89. <td>操作:</td>
  90. <td colspan="2"><div class="left">
  91. <asp:Button ID="btnUpdate" runat="server" Text=" 保 存 " OnClick="btnUpdate_Click" />
  92. <asp:Label ID="labID" runat="server" Text="0" Visible="false"></asp:Label>
  93. </div></td>
  94. </tr>
  95. </table>
  96. </div>
  97. </div>
  98. </div>
  99. </form>
  100. </body>
  101. </html>