forum_editmall.aspx
上传用户:wenllgg125
上传日期:2020-04-09
资源大小:7277k
文件大小:20k
源码类别:

SCSI/ASPI

开发平台:

Others

  1. <%@ Page language="c#" Inherits="Discuz.Web.Admin.editmall" Codebehind="forum_editmall.aspx.cs" %>
  2. <%@ Register TagPrefix="uc1" TagName="TextareaResize" Src="../UserControls/TextareaResize.ascx" %>
  3. <%@ Register TagPrefix="cc2" Namespace="Discuz.Control" Assembly="Discuz.Control" %>
  4. <%@ Register TagPrefix="cc1" Namespace="Discuz.Control" Assembly="Discuz.Control" %>
  5. <%@ Register TagPrefix="uc1" TagName="PageInfo" Src="../UserControls/PageInfo.ascx" %>
  6. <html>
  7. <head>
  8. <title>编辑商城</title>
  9. <link href="../styles/datagrid.css" type="text/css" rel="stylesheet" />
  10. <link href="../styles/tab.css" type="text/css" rel="stylesheet" />
  11. <script type="text/javascript" src="../js/common.js"></script>
  12. <script type="text/javascript" src="../js/tabstrip.js"></script>
  13. <link href="../styles/dntmanager.css" type="text/css" rel="stylesheet" />        
  14. <link href="../styles/modelpopup.css" type="text/css" rel="stylesheet" />
  15. <script type="text/javascript" src="../js/modalpopup.js"></script>
  16. <script type="text/javascript" src="../js/AjaxHelper.js"></script>
  17. <style type="text/css">
  18. .td_alternating_item1{font-size: 12px;}
  19. .td_alternating_item2{font-size: 12px;background-color: #F5F7F8;}
  20. </style>
  21. <script type="text/javascript">
  22. function editcredit(fid,fieldname)
  23. {
  24. window.location="forum_ScoreStrategy.aspx?fid="+fid+"&fieldname="+fieldname;
  25. }
  26. function Check(form,bCheck,findstring)
  27. {
  28. for (var i=0;i<form.elements.length;i++)
  29. {
  30. var e = form.elements[i];
  31. if (e.name.indexOf(findstring) >= 0)
  32. e.checked = bCheck;
  33. }
  34. }
  35. function CheckRow(form,bCheck,rowId)
  36. {
  37. for (var i=0;i<form.elements.length;i++)
  38. {
  39. var e = form.elements[i];
  40. if (e.name.indexOf(rowId + ":viewbyuser") >= 0 || e.name.indexOf(rowId + ":postbyuser") >= 0
  41.  || e.name.indexOf(rowId + ":replybyuser") >= 0 || e.name.indexOf(rowId + ":getattachbyuser") >= 0
  42.   || e.name.indexOf(rowId + ":postattachbyuser") >= 0)
  43. e.checked = bCheck;
  44. }
  45. }
  46. function GetTd()
  47. {
  48. td = document.createElement("td");
  49. td.setAttribute("nowrap","nowrap");
  50. td.style.borderColor = "#EAE9E1";
  51. td.style.borderWidth = "1px";
  52. td.style.borderStyle = "solid";
  53. return td;
  54. }
  55. </script>
  56. <meta http-equiv="X-UA-Compatible" content="IE=7" />
  57. </head>
  58. <body>
  59. <form id="Form1" method="post" runat="server">
  60. <span style="font-size:12px">当前商城版块为: <b><asp:literal id="forumname" runat="server"></asp:literal></b></span>
  61. <cc2:TabControl id="TabControl1" SelectionMode="Client" runat="server" TabScriptPath="../js/tabstrip.js"  height="100%">
  62. <cc2:TabPage Caption="基本信息" ID="tabPage1" >
  63. <table width="100%">
  64. <tr><td class="item_title" colspan="2">交易版名称</td></tr>
  65. <tr>
  66. <td class="vtop rowform">
  67. <cc2:TextBox id="name" runat="server" CanBeNull="必填"  IsReplaceInvertedComma="false"   size="30"  MaxLength="49"></cc2:TextBox>
  68. </td>
  69. <td class="vtop"></td>
  70. </tr>
  71. <tr><td class="item_title" colspan="2">已继承的版主</td></tr>
  72. <tr>
  73. <td class="vtop rowform">
  74. <asp:Literal ID="inheritmoderators" runat="server"></asp:Literal>
  75. </td>
  76. <td class="vtop"></td>
  77. </tr>
  78. <tr><td class="item_title" colspan="2">是否显示</td></tr>
  79. <tr>
  80. <td class="vtop rowform">
  81. <cc2:RadioButtonList id="status" runat="server" RepeatColumns="2">
  82. <asp:ListItem Value="1" Selected="True">显示</asp:ListItem>
  83. <asp:ListItem Value="0" >不显示</asp:ListItem>
  84. </cc2:RadioButtonList>
  85. </td>
  86. <td class="vtop">设置本版块是否是隐藏版块</td>
  87. </tr>
  88. <!--
  89. <tr><td class="item_title" colspan="2">显示模式</td></tr>
  90. <tr>
  91. <td class="vtop rowform">
  92. <cc2:RadioButtonList id="colcount" runat="server" RepeatColumns="1">
  93. <asp:ListItem Value="1">传统模式[默认]</asp:ListItem>
  94. <asp:ListItem Value="2">子版块横排模式</asp:ListItem>
  95. </cc2:RadioButtonList>
  96. <div id="showcolnum" runat="server"><cc2:TextBox id="colcountnumber" runat="server" Size="2" Text="4" MaxLength="1"></cc2:TextBox></div>
  97. </td>
  98. <td class="vtop">用来设置该论坛(或分类)的子论坛在列表中的显示方式,选择"子版块横排模式",则子分类列表按每行按输入的数字个数出现</td>
  99. </tr>
  100. -->
  101. <tr><td class="item_title" colspan="2">版主列表</td></tr>
  102. <tr>
  103. <td class="vtop rowform">
  104.  <uc1:TextareaResize id="moderators" runat="server" controlname="TabControl1:tabPage1:moderators" Cols="30" Rows="5"></uc1:TextareaResize>
  105. </td>
  106. <td class="vtop">当前版块版主列表,以','进行分割,如:lisi,zhangsan</td>
  107. </tr>
  108. <tr><td class="item_title" colspan="2">交易版描述</td></tr>
  109. <tr>
  110. <td class="vtop rowform">
  111.   <uc1:TextareaResize id="description" runat="server" controlname="TabControl1:tabPage1:description" Cols="30" Rows="5"></uc1:TextareaResize>
  112. </td>
  113. <td class="vtop"></td>
  114. </tr>
  115. <tbody id="templatestyle" runat="server">
  116. <tr><td class="item_title" colspan="2">模板风格</td></tr>
  117. <tr>
  118. <td class="vtop rowform">
  119.  <cc2:DropDownList id="templateid" runat="server" HintInfo="设置本版块使用的模板,将不受系统模板限制"></cc2:DropDownList>
  120. <td class="vtop"></td>
  121. </tr>
  122. </tbody>
  123. </table>
  124. </cc2:TabPage>
  125. <cc2:TabPage Caption="高级设置" ID="tabPage2">
  126. <table width="100%">
  127. <tr><td class="item_title" colspan="2">访问本版块的密码</td></tr>
  128. <tr>
  129. <td class="vtop rowform">
  130.  <cc2:textbox id="password" runat="server" RequiredFieldType="暂无校验" IsReplaceInvertedComma="false" MaxLength="16" Size="20"></cc2:textbox>
  131. </td>
  132. <td class="vtop">设置本版块的密码,留空则本版块不使用密码</td>
  133. </tr>
  134. <tr><td class="item_title" colspan="2">交易版图标</td></tr>
  135. <tr>
  136. <td class="vtop rowform">
  137.   <cc2:textbox id="icon" runat="server" Width="250px" RequiredFieldType="暂无校验" IsReplaceInvertedComma="false"  MaxLength="253"></cc2:textbox>
  138. </td>
  139. <td class="vtop">显示于首页论坛列表等</td>
  140. </tr>
  141.  <!--<tr><td class="item_title" colspan="2">发主题积分策略</td></tr>
  142. <tr>
  143. <td class="vtop rowform">
  144.   <a href="#" class="TextButton" onclick="javascript:editcredit('<%=Request.Params["fid"]%>','postcredits');" >编 辑</a>
  145. </td>
  146. <td class="vtop"></td>
  147. </tr>
  148. <tr><td class="item_title" colspan="2">发回复积分策略</td></tr>
  149. <tr>
  150. <td class="vtop rowform">
  151.    <a href="#" class="TextButton" onclick="javascript:editcredit('<%=Request.Params["fid"]%>','replycredits');" >编 辑</a>
  152. </td>
  153. <td class="vtop"></td>
  154. </tr>
  155. -->
  156. <tr><td class="item_title" colspan="2">指向外部链接地址</td></tr>
  157. <tr>
  158. <td class="vtop rowform">
  159. <cc2:textbox id="redirect" runat="server" Width="250px" RequiredFieldType="暂无校验" IsReplaceInvertedComma="false"  MaxLength="253"></cc2:textbox>
  160. </td>
  161. <td class="vtop">设置版块为一个链接,当点击本版块是将跳转到指定的地址上</td>
  162. </tr>
  163. <tr><td class="item_title" colspan="2">允许的附件类型</td></tr>
  164. <tr>
  165. <td class="vtop rowform">
  166. <cc2:CheckBoxList id="attachextensions" runat="server" RepeatColumns="4"></cc2:CheckBoxList>
  167. </td>
  168. <td class="vtop">允许在本版块上传的附件类型,留空为使用用户组设置, 且版块设置优先于用户组设置</td>
  169. </tr>
  170. <tr><td class="item_title" colspan="2">本版规则</td></tr>
  171. <tr>
  172. <td class="vtop rowform">
  173. <cc2:textbox id="rules" runat="server" RequiredFieldType="暂无校验" width="250" height="100" TextMode="MultiLine" IsReplaceInvertedComma="false"></cc2:textbox>
  174. </td>
  175. <td class="vtop">支持Html</td>
  176. </tr>
  177. <!--
  178. <tr><td class="item_title" colspan="2">定期自动关闭主题:</td></tr>
  179. <tr>
  180. <td class="vtop rowform">
  181. <cc2:RadioButtonList id="autocloseoption" runat="server" RepeatColumns="1">
  182. <asp:ListItem Value="0" Selected="True">不自动关闭</asp:ListItem>
  183. <asp:ListItem Value="1">按发布时间</asp:ListItem>
  184. </cc2:RadioButtonList>
  185. <div id="showclose" runat="server">
  186. <cc2:TextBox id="autocloseday" runat="server" Size="4" MaxLength="3"></cc2:TextBox>
  187. <font style="font-size:12px">天自动关闭</font>
  188. </div>
  189. </td>
  190. <td class="vtop">设置主题关闭方式</td>
  191. </tr>
  192. <tr><td class="item_title" colspan="2">只允许发布特殊类型主题</td></tr>
  193. <tr>
  194. <td class="vtop rowform">
  195. <cc2:RadioButtonList id="allowspecialonly" runat="server" RepeatColumns="2">
  196.                     <asp:ListItem Value="1">是</asp:ListItem>
  197.                     <asp:ListItem Value="0" Selected="True">否</asp:ListItem>
  198.                 </cc2:RadioButtonList>
  199. </td>
  200. <td class="vtop">设置本版是否只允许发布特殊类型主题</td>
  201. </tr>
  202. -->
  203. <tr><td class="item_title" colspan="2">设置</td></tr>
  204. <tr>
  205. <td class="vtop" colspan="2">
  206.  <cc2:CheckBoxList id="setting" runat="server" RepeatColumns="4" >
  207. <asp:ListItem Value="allowsmilies">允许使用表情符</asp:ListItem>
  208. <asp:ListItem Value="allowrss">允许RSS</asp:ListItem>
  209. <asp:ListItem Value="allowbbcode">允许Discuz!NT代码</asp:ListItem>
  210. <asp:ListItem Value="allowimgcode">允许[img]代码</asp:ListItem>
  211. <asp:ListItem Value="recyclebin">打开回收站</asp:ListItem>
  212. <asp:ListItem Value="modnewposts">发帖需要审核</asp:ListItem>
  213. <asp:ListItem Value="disablewatermark">禁止附件自动水印</asp:ListItem>
  214. <asp:ListItem Value="inheritedmod">继承上级论坛或分类的版主设定</asp:ListItem>
  215. <asp:ListItem Value="allowthumbnail">主题列表中显示缩略图</asp:ListItem>
  216. <asp:ListItem Value="allowtags">允许标签</asp:ListItem>         
  217. </cc2:CheckBoxList>
  218. </td>
  219. </tr>
  220. </table>
  221. </cc2:TabPage>
  222. <cc2:TabPage Caption="权限设定" ID="tabPage3">
  223. <uc1:PageInfo id="PageInfo1" runat="server" Icon="Information" Text="每个组的权限项不选择为使用用户组设置,且版块设置优先于用户组设置."></uc1:PageInfo>    
  224. <table width="100%" id="powerset" align="center" class="table1" cellspacing="0" cellPadding="4"  bgcolor="#C3C7D1" runat="server">
  225. <tr>
  226. <td class="td_alternating_item2" width="1%">&nbsp;</td>
  227. <td class="td_alternating_item2" width="20%" style="word-wrap: break-word">&nbsp;</td>
  228. <td class="td_alternating_item2"><input type="checkbox" id="c1" onclick="seleCol('viewperm',this.checked)"/><label for="c1">浏览/交易商品</label></td>
  229. <td class="td_alternating_item2"><input type="checkbox" id="c2" onclick="seleCol('postperm',this.checked)"/><label for="c2">发布商品</label></td>
  230. <td class="td_alternating_item2"><input type="checkbox" id="c3" onclick="seleCol('replyperm',this.checked)"/><label for="c3">发表留言</label></td>
  231. <td class="td_alternating_item2"><input type="checkbox" id="c4" onclick="seleCol('getattachperm',this.checked)"/><label for="c4">下载/查看附件</label></td>
  232. <td class="td_alternating_item2"><input type="checkbox" id="c5" onclick="seleCol('postattachperm',this.checked)"/><label for="c5">上传附件</label></td>
  233. </tr>
  234. </table>
  235. </cc2:TabPage>
  236. <cc2:TabPage Caption="特殊用户" ID="tabPage4">
  237. <table width="100%" align="center" class="table1" cellspacing="0" cellPadding="4"  bgcolor="#C3C7D1">
  238. <tr>
  239. <td class="category">
  240. <input title="选中/取消选中 本页所有Case" onclick="Check(this.form,this.checked,'userid')" type="checkbox" name="chkall" id="chkall" />全选/取消全选 &nbsp; 
  241. <cc2:Button id="DelButton" runat="server" Text=" 删 除 " ButtonImgUrl="../images/del.gif"></cc2:Button>
  242. </td>
  243. </tr>
  244. </table>
  245. <cc2:datagrid id="SpecialUserList"  PageSize="25"  runat="server" Width="100%" ColumnSpan="7">
  246. <Columns>
  247. <asp:TemplateColumn HeaderText="选择">
  248. <HeaderStyle Width="10%" /><ItemStyle width="10%"/>
  249. <ItemTemplate>
  250. <asp:CheckBox id="userid" runat="server"></asp:CheckBox>
  251. <%# SpecialUserList.LoadSelectedCheckBox(DataBinder.Eval(Container, "DataItem.uid").ToString())%>
  252. </ItemTemplate>
  253. </asp:TemplateColumn>
  254. <asp:TemplateColumn><HeaderStyle Width="15%" /><ItemStyle width="15%"/>
  255. <HeaderTemplate>
  256. 用户名
  257. </HeaderTemplate>
  258. <ItemTemplate>
  259. <input type="checkbox" onclick="CheckRow(this.form,this.checked,<%# Convert.ToInt32(DataBinder.Eval(Container, "DataItem.id")) + 2%>)" />&nbsp;
  260. <%# (DataBinder.Eval(Container, "DataItem.name"))%>
  261. </ItemTemplate>
  262. </asp:TemplateColumn>
  263. <asp:TemplateColumn ><HeaderStyle Width="15%" /><ItemStyle width="15%"/>
  264. <HeaderTemplate>
  265. <input type="checkbox" onclick="Check(this.form,this.checked,':viewbyuser')" />&nbsp;浏览论坛
  266. </HeaderTemplate>
  267. <ItemTemplate>
  268. <asp:CheckBox id="viewbyuser" runat="server" Checked='<%# (DataBinder.Eval(Container, "DataItem.viewbyuser"))%>'></asp:CheckBox>
  269. </ItemTemplate>
  270. </asp:TemplateColumn>
  271. <asp:TemplateColumn><HeaderStyle Width="15%" /><ItemStyle width="15%"/>
  272. <HeaderTemplate>
  273. <input type="checkbox" onclick="Check(this.form,this.checked,':postbyuser')" />&nbsp;发布商品
  274. </HeaderTemplate>
  275. <ItemTemplate>
  276. <asp:CheckBox id="postbyuser" runat="server" Checked='<%# (DataBinder.Eval(Container, "DataItem.postbyuser"))%>'></asp:CheckBox>
  277. </ItemTemplate>
  278. </asp:TemplateColumn>
  279. <asp:TemplateColumn ><HeaderStyle Width="15%" /><ItemStyle width="15%"/>
  280. <HeaderTemplate>
  281. <input type="checkbox" onclick="Check(this.form,this.checked,':replybyuser')" />&nbsp;发表留言
  282. </HeaderTemplate>
  283. <ItemTemplate>
  284. <asp:CheckBox id="replybyuser" runat="server" Checked='<%# (DataBinder.Eval(Container, "DataItem.replybyuser"))%>'></asp:CheckBox>
  285. </ItemTemplate>
  286. </asp:TemplateColumn>
  287. <asp:TemplateColumn ><HeaderStyle Width="15%" /><ItemStyle width="15%"/>
  288. <HeaderTemplate>
  289. <input type="checkbox" onclick="Check(this.form,this.checked,':getattachbyuser')" />&nbsp;下载/查看附件
  290. </HeaderTemplate>
  291. <ItemTemplate>
  292. <asp:CheckBox id="getattachbyuser" runat="server" Checked='<%# (DataBinder.Eval(Container, "DataItem.getattachbyuser"))%>'></asp:CheckBox>
  293. </ItemTemplate>
  294. </asp:TemplateColumn>
  295. <asp:TemplateColumn ><HeaderStyle Width="15%" /><ItemStyle width="15%"/>
  296. <HeaderTemplate>
  297. <input type="checkbox" onclick="Check(this.form,this.checked,':postattachbyuser')" />&nbsp;上传附件
  298. </HeaderTemplate>
  299. <ItemTemplate>
  300. <asp:CheckBox id="postattachbyuser" runat="server" Checked='<%# (DataBinder.Eval(Container, "DataItem.postattachbyuser"))%>'></asp:CheckBox>
  301. </ItemTemplate>
  302. </asp:TemplateColumn>
  303. </Columns>
  304. </cc2:datagrid>
  305. <br />
  306. <uc1:PageInfo id="info1" runat="server" Icon="Information" Text="授予某些用户在本版块一些特殊权限,在下面输入框用中输入要给予特殊权限的用户列表,以&quot;,&quot;分隔"></uc1:PageInfo>
  307. <table width="100%">
  308. <tr><td class="item_title" colspan="2">增加特殊用户列表</td></tr>
  309. <tr>
  310. <td class="vtop" colspan="2">
  311.  <uc1:TextareaResize id="UserList" runat="server" controlname="TabControl1:tabPage4:UserList" Cols="40" Rows="2"></uc1:TextareaResize>            
  312.  &nbsp;&nbsp;<cc2:Button id="BindPower" runat="server" Text=" 增加 "></cc2:Button>
  313. </td>
  314. </tr>
  315. </table>
  316. </cc2:TabPage>
  317. <cc2:TabPage Caption="主题分类" ID="tabPage5">
  318. <table width="100%">
  319. <tr><td class="item_title" colspan="2">启用主题分类</td></tr>
  320. <tr>
  321. <td class="vtop rowform">
  322. <cc2:RadioButtonList id="applytopictype" runat="server">
  323. <asp:ListItem Value="1">是</asp:ListItem>
  324. <asp:ListItem Value="0">否</asp:ListItem>
  325. </cc2:RadioButtonList>
  326. </td>
  327. <td class="vtop">设置是否在本版块启用主题分类功能,您需要同时设定相应的分类选项,才能启用本功能</td>
  328. </tr>
  329. <tr><td class="item_title" colspan="2">发帖必须归类</td></tr>
  330. <tr>
  331. <td class="vtop rowform">
  332. <cc2:RadioButtonList id="postbytopictype" runat="server">
  333. <asp:ListItem Value="1">是</asp:ListItem>
  334. <asp:ListItem Value="0">否</asp:ListItem>
  335. </cc2:RadioButtonList>
  336. </td>
  337. <td class="vtop">如果选择"是",作者发新主题时,必须选择主题对应的类别才能发表.本功能必须"启用主题分类"后才可使用</td>
  338. </tr>
  339. <tr><td class="item_title" colspan="2">允许按类别浏览</td></tr>
  340. <tr>
  341. <td class="vtop rowform">
  342. <cc2:RadioButtonList id="viewbytopictype" runat="server">
  343. <asp:ListItem Value="1">是</asp:ListItem>
  344. <asp:ListItem Value="0">否</asp:ListItem>
  345. </cc2:RadioButtonList>
  346. </td>
  347. <td class="vtop">如果选择"是",用户将可以在本论坛中按照不同的类别浏览主题.注意: 本功能必须"启用主题分类"后才可使用并会加重服务器负担</td>
  348. </tr>
  349. <tr><td class="item_title" colspan="2">类别前缀</td></tr>
  350. <tr>
  351. <td class="vtop rowform">
  352. <cc2:RadioButtonList id="topictypeprefix" runat="server" HintTitle="提示" HintInfo="">
  353. <asp:ListItem Value="1">是</asp:ListItem>
  354. <asp:ListItem Value="0">否</asp:ListItem>
  355. </cc2:RadioButtonList>
  356. </td>
  357. <td class="vtop">设置是否在主题列表中,给已分类的主题前加上类别的显示.注意: 本功能必须"启用主题分类"后才可使用</td>
  358. </tr>
  359. </table>
  360. <br />
  361. <cc2:datagrid id="TopicTypeDataGrid" OnSortCommand="Sort_Grid" PageSize="10" runat="server">
  362. <Columns>
  363. <asp:BoundColumn DataField="id" HeaderText="id" Visible="false"></asp:BoundColumn>
  364. <asp:BoundColumn DataField="name" HeaderText="主题分类"><HeaderStyle Width="15%" /></asp:BoundColumn>
  365. <asp:BoundColumn DataField="description" HeaderText="描述"><HeaderStyle Width="40%" /></asp:BoundColumn>
  366. <asp:BoundColumn HeaderText="不使用"><HeaderStyle Width="15%" /></asp:BoundColumn>
  367. <asp:BoundColumn HeaderText="使用(平板显示)"><HeaderStyle Width="15%" /></asp:BoundColumn>
  368. <asp:BoundColumn HeaderText="使用(下拉显示)"><HeaderStyle Width="15%" /></asp:BoundColumn>
  369. </Columns>
  370. </cc2:datagrid>
  371. <table width="100%">
  372. <tr><td class="item_title" colspan="2">主题分类名</td></tr>
  373. <tr>
  374. <td class="vtop rowform">
  375. <input name="typename" type="text" maxlength="200" id="typename" maxlength="200" size="10" />
  376. </td>
  377. <td class="vtop"></td>
  378. </tr>
  379. <tr><td class="item_title" colspan="2">显示顺序</td></tr>
  380. <tr>
  381. <td class="vtop rowform">
  382. <input name="typeorder" type="text" maxlength="4" id="typeorder" maxlength="4" size="3" />
  383. </td>
  384. <td class="vtop"></td>
  385. </tr>
  386. <tr><td class="item_title" colspan="2">描述</td></tr>
  387. <tr>
  388. <td class="vtop rowform">
  389. <input name="typedescription" type="text" maxlength="500" id="typedescription" maxlength="500" size="10" />
  390. </td>
  391. <td class="vtop"></td>
  392. </tr>
  393. </table>
  394. <div class="Navbutton"><button type="button" class="ManagerButton" id="AddNewRec" onclick="AddTopicType();"><img src="../images/submit.gif"/> 新增主题分类 </button></div>
  395. <div id="resultmessage" style="display:none"></div>
  396. </cc2:TabPage>
  397. <cc2:TabPage Caption="统计信息" ID="tabPage6">
  398. <asp:Label id="forumsstatic" runat="server" Visible="true"></asp:Label>
  399. <br />
  400. <br /><cc2:Button ID="RunForumStatic" runat="server" ButtontypeMode="Normal" Text="统计最新信息" />
  401. <%=runforumsstatic%>
  402. </cc2:TabPage>
  403. </cc2:TabControl>
  404. <div id="topictypes" style="display:none;width:100%;">
  405. <table width="100%">
  406. <tr><td class="item_title" colspan="2">显示顺序</td></tr>
  407. <tr>
  408. <td class="vtop rowform">
  409. <cc2:TextBox id="displayorder" runat="server"  CanBeNull="必填" RequiredFieldType="数据校验"></cc2:TextBox>
  410. </td>
  411. <td class="vtop"></td>
  412. </tr>
  413. <tr><td class="item_title" colspan="2">主题分类</td></tr>
  414. <tr>
  415. <td class="vtop rowform">
  416. <cc2:textbox id="topictypes" runat="server" RequiredFieldType="暂无校验" width="370" height="50" TextMode="MultiLine"></cc2:textbox>
  417. </td>
  418. <td class="vtop"></td>
  419. </tr>
  420.  <table>
  421. </div>
  422. <div class="Navbutton">
  423. <cc2:Button id="SubmitInfo" runat="server" Text=" 提 交 "></cc2:Button>&nbsp;&nbsp;
  424. <button onclick="window.location='forum_forumstree.aspx';" id="Button3" class="ManagerButton" type="button"><img src="../images/arrow_undo.gif"/> 返 回 </button>
  425. </div>
  426. <cc2:Hint id="Hint1" runat="server" HintImageUrl="../images"></cc2:Hint>
  427. <script type="text/javascript">
  428. function editcredit(fid,fieldname)
  429. {
  430. window.location="forum_ScoreStrategy.aspx?fid="+fid+"&fieldname="+fieldname;
  431. }
  432. </script>
  433. </form>
  434. <%=footer%>
  435. </body>
  436. </html>