| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ColumnEdit.aspx.cs" Inherits="CB.Admin.Plugins.SpecialColumn.ColumnEdit" %>
- <!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">
- <tr>
- <td width="100">名称:</td>
- <td width="300"><div class="left">
- <asp:TextBox ID="txtName" runat="server"></asp:TextBox> <span style="color: Red;">(必填)</span></div></td>
- <td rowspan="5"><div class="left" style="text-align:left;">
- <asp:Image ID="imglogo" runat="server" Height="200px" Width="210px" /><br />
- 上传Logo:<asp:FileUpload ID="upfile" runat="server" Width="250px" />
- <asp:Button ID="btnUpload" runat="server" Text="上传" onclick="btnUpload_Click" />
- <asp:Label ID="lblmes" runat="server" Text=""></asp:Label>
- <br /><span style="color:#ff0000;"> * 允许.jpg.gif.jepg格式图片上传,图片不超过1M</span></div>
- </td>
- </tr>
- <tr>
- <td>URL重写:</td>
- <td><div class="left">
- <asp:TextBox ID="txtRewriteUrl" runat="server"></asp:TextBox> <span style="color: Red;">必填</span></div></td>
- </tr>
- <tr>
- <td>彩种:</td>
- <td><div class="left">
- <asp:DropDownList ID="ddlLottery" runat="server">
- <asp:ListItem Value="">==请选择==</asp:ListItem>
- <asp:ListItem Value="3d">福彩3D</asp:ListItem>
- <asp:ListItem Value="ssq">双色球</asp:ListItem>
- <asp:ListItem Value="dlt">大乐透</asp:ListItem>
- <asp:ListItem Value="p3">排列三</asp:ListItem>
- </asp:DropDownList> <span style="color: red;">(必填)</span></div></td>
- </tr>
- <tr>
- <td>类型:</td>
- <td><div class="left">
- <asp:DropDownList ID="ddlType" runat="server">
- <asp:ListItem Value="">==请选择==</asp:ListItem>
- <asp:ListItem Value="tuku">图库类</asp:ListItem>
- <asp:ListItem Value="article">文章类</asp:ListItem>
- <asp:ListItem Value="tool">工具类</asp:ListItem>
- <asp:ListItem Value="rule">规则类</asp:ListItem>
- <asp:ListItem Value="opencode">开奖类</asp:ListItem>
- </asp:DropDownList> <span style="color: Red;">(必填)</span></div></td>
- </tr>
- <tr>
- <td>热度:</td>
- <td><div class="left">
- <asp:TextBox ID="txtStatus" runat="server"></asp:TextBox> <span style="color:Red;">*为0时禁用专题</span></div></td>
- </tr>
- <tr>
- <td>专题关键字:</td>
- <td colspan="2"><div class="left">
- <asp:TextBox ID="txtWords" runat="server" Width="500px" Height="60px" TextMode="MultiLine"></asp:TextBox></div></td>
- </tr>
- <tr>
- <td>专题描述:</td>
- <td colspan="2"><div class="left">
- <asp:TextBox ID="txtAbout" runat="server" Width="500px" Height="60px" TextMode="MultiLine"></asp:TextBox> <span style="color: Red;">*可包含HTML代码</span></div></td>
- </tr>
- <tr>
- <td>hTitle:</td>
- <td colspan="2"><div class="left">
- <asp:TextBox ID="txtTitle" runat="server" Width="500px" Height="60px" TextMode="MultiLine"></asp:TextBox></div></td>
- </tr>
- <tr>
- <td>hKeywords:</td>
- <td colspan="2"><div class="left">
- <asp:TextBox ID="txtKeywords" runat="server" Width="500px" Height="60px" TextMode="MultiLine"></asp:TextBox></div></td>
- </tr>
- <tr>
- <td>hDescription:</td>
- <td colspan="2"><div class="left">
- <asp:TextBox ID="txtDescription" runat="server" Width="500px" Height="60px" TextMode="MultiLine"></asp:TextBox></div></td>
- </tr>
- <tr>
- <td>操作:</td>
- <td colspan="2"><div class="left">
- <asp:Button ID="btnUpdate" runat="server" Text=" 保 存 " OnClick="btnUpdate_Click" />
- <asp:Label ID="labID" runat="server" Text="0" Visible="false"></asp:Label>
- </div></td>
- </tr>
- </table>
- </div>
- </div>
- </div>
- </form>
- </body>
- </html>
|