manage.aspx 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="manage.aspx.cs" Inherits="iNethinkCMS.Web.plugs.wordtocms.manage" %>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head runat="server">
  5. <title></title>
  6. <link href="../../admin/skin/css/css.css" rel="stylesheet" type="text/css" />
  7. <script type="text/javascript" src="../../admin/skin/js/jquery.min.js"></script>
  8. <script type="text/javascript" src="../../admin/skin/js/command.js"></script>
  9. </head>
  10. <body>
  11. <form id="form_wordtocms_manage" runat="server">
  12. <div class="maintop" runat="server">
  13. 当前位置:Word发布文章功能设置
  14. </div>
  15. <div class="main" runat="server">
  16. <div class="info">
  17. <dl style="border: 0;">
  18. <dt>开启Word发布:</dt>
  19. <dd>
  20. <asp:DropDownList ID="txtState" runat="server">
  21. <asp:ListItem Value="0">停用</asp:ListItem>
  22. <asp:ListItem Value="1">启用</asp:ListItem>
  23. </asp:DropDownList>
  24. </dd>
  25. </dl>
  26. <dl>
  27. <dt>默认发布状态:</dt>
  28. <dd>
  29. <asp:DropDownList ID="txtContentDisplay" runat="server">
  30. <asp:ListItem Value="0">不直接发布(推荐)</asp:ListItem>
  31. <asp:ListItem Value="1">直接发布</asp:ListItem>
  32. <asp:ListItem Value="2">依据在Word中的发布模式</asp:ListItem>
  33. </asp:DropDownList></dd>
  34. <dd class="t">从Word发布至CMS后,相应文章是否直接发布</dd>
  35. </dl>
  36. <dl>
  37. <dt>自动形象图:</dt>
  38. <dd>
  39. <asp:DropDownList ID="txtContentIndexpic" runat="server">
  40. <asp:ListItem Value="0">否</asp:ListItem>
  41. <asp:ListItem Value="1">是</asp:ListItem>
  42. </asp:DropDownList></dd>
  43. <dd class="t">自动将word的第一张图片设定为形象图</dd>
  44. </dl>
  45. <dl>
  46. <dt>&nbsp;</dt>
  47. <dd>
  48. <asp:Button ID="Button_Submit" runat="server" Text="提 交" CssClass="btnbig"
  49. OnClick="Button_Submit_Click" /></dd>
  50. </dl>
  51. </div>
  52. </div>
  53. </form>
  54. </body>
  55. </html>