123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="manage.aspx.cs" Inherits="iNethinkCMS.Web.plugs.wordtocms.manage" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head runat="server">
- <title></title>
- <link href="../../admin/skin/css/css.css" rel="stylesheet" type="text/css" />
- <script type="text/javascript" src="../../admin/skin/js/jquery.min.js"></script>
- <script type="text/javascript" src="../../admin/skin/js/command.js"></script>
- </head>
- <body>
- <form id="form_wordtocms_manage" runat="server">
- <div class="maintop" runat="server">
- 当前位置:Word发布文章功能设置
- </div>
- <div class="main" runat="server">
- <div class="info">
- <dl style="border: 0;">
- <dt>开启Word发布:</dt>
- <dd>
- <asp:DropDownList ID="txtState" runat="server">
- <asp:ListItem Value="0">停用</asp:ListItem>
- <asp:ListItem Value="1">启用</asp:ListItem>
- </asp:DropDownList>
- </dd>
- </dl>
- <dl>
- <dt>默认发布状态:</dt>
- <dd>
- <asp:DropDownList ID="txtContentDisplay" runat="server">
- <asp:ListItem Value="0">不直接发布(推荐)</asp:ListItem>
- <asp:ListItem Value="1">直接发布</asp:ListItem>
- <asp:ListItem Value="2">依据在Word中的发布模式</asp:ListItem>
- </asp:DropDownList></dd>
- <dd class="t">从Word发布至CMS后,相应文章是否直接发布</dd>
- </dl>
- <dl>
- <dt>自动形象图:</dt>
- <dd>
- <asp:DropDownList ID="txtContentIndexpic" runat="server">
- <asp:ListItem Value="0">否</asp:ListItem>
- <asp:ListItem Value="1">是</asp:ListItem>
- </asp:DropDownList></dd>
- <dd class="t">自动将word的第一张图片设定为形象图</dd>
- </dl>
- <dl>
- <dt> </dt>
- <dd>
- <asp:Button ID="Button_Submit" runat="server" Text="提 交" CssClass="btnbig"
- OnClick="Button_Submit_Click" /></dd>
- </dl>
- </div>
- </div>
- </form>
- </body>
- </html>
|