forum_addfirstforum.aspx
上传用户:wenllgg125
上传日期:2020-04-09
资源大小:7277k
文件大小:10k
源码类别:
SCSI/ASPI
开发平台:
Others
- <%@ Page language="c#" Inherits="Discuz.Web.Admin.addfirstforum" Codebehind="forum_addfirstforum.aspx.cs" %>
- <%@ Register TagPrefix="cc2" Namespace="Discuz.Control" Assembly="Discuz.Control" %>
- <%@ Register TagPrefix="cc3" Namespace="Discuz.Control" Assembly="Discuz.Control" %>
- <%@ Register TagPrefix="uc1" TagName="TextareaResize" Src="../UserControls/TextareaResize.ascx" %>
- <%@ Register TagPrefix="uc1" TagName="PageInfo" Src="../UserControls/PageInfo.ascx" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html>
- <head>
- <title>添加版块</title>
- <link href="../styles/datagrid.css" type="text/css" rel="stylesheet" />
- <link href="../styles/tab.css" type="text/css" rel="stylesheet" />
- <script type="text/javascript" src="../js/common.js"></script>
- <script type="text/javascript" src="../js/tabstrip.js"></script>
- <link href="../styles/dntmanager.css" type="text/css" rel="stylesheet" />
- <link href="../styles/modelpopup.css" type="text/css" rel="stylesheet" />
- <script type="text/javascript" src="../js/modalpopup.js"></script>
- <script type="text/javascript" src="../js/AjaxHelper.js"></script>
- <style type="text/css">
- .td_alternating_item1{font-size: 12px;}
- .td_alternating_item2{font-size: 12px;background-color: #F5F7F8;}
- </style>
- <meta http-equiv="X-UA-Compatible" content="IE=7" />
- </head>
- <body >
- <form id="Form1" method="post" runat="server">
- <cc3:TabControl id="TabControl1" SelectionMode="Client" runat="server" TabScriptPath="../js/tabstrip.js" width="760" height="100%">
- <cc3:TabPage Caption="基本信息" ID="tabPage51">
- <table width="100%">
- <tr><td class="item_title" colspan="2">论坛名称</td></tr>
- <tr>
- <td class="vtop rowform">
- <cc2:TextBox id="name" runat="server" CanBeNull="必填" width="250" size="30" MaxLength="49"></cc2:TextBox>
- </td>
- <td class="vtop"></td>
- </tr>
- <tr><td class="item_title" colspan="2">是否显示</td></tr>
- <tr>
- <td class="vtop rowform">
- <cc2:RadioButtonList id="status" runat="server" RepeatColumns="2" >
- <asp:ListItem Value="1" Selected="True">显示</asp:ListItem>
- <asp:ListItem Value="0" >不显示</asp:ListItem>
- </cc2:RadioButtonList>
- </td>
- <td class="vtop"></td>
- </tr>
- <tr><td class="item_title" colspan="2">论坛描述</td></tr>
- <tr>
- <td class="vtop rowform">
- <uc1:TextareaResize id="description" runat="server" controlname="TabControl1:tabPage51:description" Cols="40" Rows="5"></uc1:TextareaResize>
- </td>
- <td class="vtop"></td>
- </tr>
- <tr><td class="item_title" colspan="2">版主列表</td></tr>
- <tr>
- <td class="vtop rowform">
- <uc1:TextareaResize id="moderators" runat="server" controlname="TabControl1:tabPage51:moderators" Cols="40" Rows="5"></uc1:TextareaResize>
- </td>
- <td class="vtop">仅供显示使用, 不记录实际权限,以','进行分割,如:lisi,zhangsan</td>
- </tr>
- </table>
- </cc3:TabPage>
- <cc3:TabPage Caption="高级设置" ID="tabPage22">
- <table width="100%">
- <tr><td class="item_title" colspan="2">访问本论坛的密码</td></tr>
- <tr>
- <td class="vtop rowform">
- <cc2:textbox id="password" runat="server" RequiredFieldType="暂无校验" IsReplaceInvertedComma="false" MaxLength="16" Size="20"></cc2:textbox>
- </td>
- <td class="vtop">留空为不需密码</td>
- </tr>
- <tr><td class="item_title" colspan="2">论坛图标</td></tr>
- <tr>
- <td class="vtop rowform">
- <cc2:textbox id="icon" runat="server" Width="250px" RequiredFieldType="暂无校验" IsReplaceInvertedComma="false" MaxLength="253"></cc2:textbox>
- </td>
- <td class="vtop">显示于首页论坛列表等</td>
- </tr>
- <tr><td class="item_title" colspan="2">指向外部链接的地址</td></tr>
- <tr>
- <td class="vtop rowform">
- <cc2:textbox id="redirect" runat="server" Width="250px" RequiredFieldType="暂无校验" IsReplaceInvertedComma="false" MaxLength="253"></cc2:textbox>
- </td>
- <td class="vtop"></td>
- </tr>
- <tr><td class="item_title" colspan="2">允许的附件类型</td></tr>
- <tr>
- <td class="vtop rowform">
- <cc2:CheckBoxList id="attachextensions" runat="server" RepeatColumns="4"></cc2:CheckBoxList>
- </td>
- <td class="vtop">允许在本论坛上传的附件类型,留空为使用用户组设置, 且版块设置优先于用户组设置</td>
- </tr>
- <tr><td class="item_title" colspan="2">本版规则</td></tr>
- <tr>
- <td class="vtop rowform">
- <cc2:textbox id="rules" runat="server" RequiredFieldType="暂无校验" width="250" height="100" TextMode="MultiLine" IsReplaceInvertedComma="false"></cc2:textbox>
- </td>
- <td class="vtop">支持Html</td>
- </tr>
- <tr><td class="item_title" colspan="2">本版块SEO关键词</td></tr>
- <tr>
- <td class="vtop rowform">
- <cc2:textbox id="seokeywords" runat="server" RequiredFieldType="暂无校验" width="250" height="100" TextMode="MultiLine" IsReplaceInvertedComma="false"></cc2:textbox>
- </td>
- <td class="vtop">设置本版块的SEO关键词,用于搜索引擎优化,放在meta的keyword标签中,多个关键字间请用半角逗号","隔开</td>
- </tr>
- <tr><td class="item_title" colspan="2">本版块SEO说明</td></tr>
- <tr>
- <td class="vtop rowform">
- <cc2:textbox id="seodescription" runat="server" RequiredFieldType="暂无校验" width="250" height="100" TextMode="MultiLine" IsReplaceInvertedComma="false"></cc2:textbox>
- </td>
- <td class="vtop">设置本版块的SEO说明,用于搜索引擎优化,放在meta的description标签中,多个说明文字间请用半角逗号","隔开</td>
- </tr>
- <tr><td class="item_title" colspan="2">本版块URL重写</td></tr>
- <tr>
- <td class="vtop rowform">
- <cc2:textbox id="rewritename" runat="server" Width="250px" RequiredFieldType="暂无校验" IsReplaceInvertedComma="false" MaxLength="20"></cc2:textbox>
- </td>
- <td class="vtop">设置版块URL重写,以字母开头,其后可以是字母或数字,但不可包含<br>"install,upgrade,admin,aspx,tools,archive,space"中任意一个字符串</td>
- </tr>
- <tr><td class="item_title" colspan="2">定期自动关闭主题</td></tr>
- <tr>
- <td class="vtop rowform">
- <cc2:RadioButtonList id="autocloseoption" runat="server" RepeatColumns="1">
- <asp:ListItem Value="0" Selected="True">不自动关闭</asp:ListItem>
- <asp:ListItem Value="1">按发布时间</asp:ListItem>
- </cc2:RadioButtonList>
- <div id="showclose" runat="server">
- <cc2:TextBox id="autocloseday" runat="server" RequiredFieldType="数据校验" Size="4" MaxLength="3"></cc2:TextBox>天自动关闭
- </div>
- </td>
- <td class="vtop"></td>
- </tr>
- <tr><td class="item_title" colspan="2">只允许发布特殊类型主题</td></tr>
- <tr>
- <td class="vtop rowform">
- <cc2:RadioButtonList id="allowspecialonly" runat="server" RepeatColumns="2">
- <asp:ListItem Value="1">是</asp:ListItem>
- <asp:ListItem Value="0" Selected="True">否</asp:ListItem>
- </cc2:RadioButtonList>
- </td>
- <td class="vtop">设置本版是否只允许发布特殊类型主题</td>
- </tr>
- <tr><td class="item_title" colspan="2">设置</td></tr>
- <tr>
- <td class="vtop" colspan="2">
- <cc2:CheckBoxList id="setting" runat="server" RepeatColumns="4" >
- <asp:ListItem Value="allowsmilies">允许使用表情符</asp:ListItem>
- <asp:ListItem Value="allowrss">允许RSS</asp:ListItem>
- <asp:ListItem Value="allowbbcode">允许Discuz!NT代码</asp:ListItem>
- <asp:ListItem Value="allowimgcode">允许[img]代码</asp:ListItem>
- <asp:ListItem Value="recyclebin">打开回收站</asp:ListItem>
- <asp:ListItem Value="modnewposts">发帖需要审核</asp:ListItem>
- <asp:ListItem Value="jammer">帖子中添加干扰码</asp:ListItem>
- <asp:ListItem Value="disablewatermark">禁止附件自动水印</asp:ListItem>
- <asp:ListItem Value="inheritedmod">继承上级论坛或分类的版主设定</asp:ListItem>
- <asp:ListItem Value="allowthumbnail">主题列表中显示缩略图</asp:ListItem>
- <asp:ListItem Value="allowtags">允许标签</asp:ListItem>
- <asp:ListItem Value="allowpostpoll">允许发投票</asp:ListItem>
- <asp:ListItem Value="allowdebate">允许辩论</asp:ListItem>
- <asp:ListItem Value="allowbonus">允许悬赏</asp:ListItem>
- <asp:ListItem Value="alloweditrules">允许版主编辑版规</asp:ListItem>
- </cc2:CheckBoxList>
- </td>
- </tr>
- </table>
- </cc3:TabPage>
- <cc3:TabPage Caption="权限设定" ID="tabPage33">
- <uc1:PageInfo id="PageInfo1" runat="server" Icon="Information" Text="每个组的权限项不选择为使用用户组设置,且版块设置优先于用户组设置."></uc1:PageInfo>
- <table width="100%" id="powerset" align="center" class="table1" cellspacing="0" cellPadding="4" bgcolor="#C3C7D1" runat="server">
- <tr>
- <td class="td_alternating_item2" width="1%"> </td>
- <td class="td_alternating_item2" width="20%" style="word-wrap: break-word"> </td>
- <td class="td_alternating_item2"><input type="checkbox" id="c1" onclick="seleCol('viewperm',this.checked)"/><label for="c1">浏览论坛</label></td>
- <td class="td_alternating_item2"><input type="checkbox" id="c2" onclick="seleCol('postperm',this.checked)"/><label for="c2">发新话题</label></td>
- <td class="td_alternating_item2"><input type="checkbox" id="c3" onclick="seleCol('replyperm',this.checked)"/><label for="c3">发表回复</label></td>
- <td class="td_alternating_item2"><input type="checkbox" id="c4" onclick="seleCol('getattachperm',this.checked)"/><label for="c4">下载/查看附件</label></td>
- <td class="td_alternating_item2"><input type="checkbox" id="c5" onclick="seleCol('postattachperm',this.checked)"/><label for="c5">上传附件</label></td>
- </tr>
- </table>
- </cc3:TabPage>
- </cc3:TabControl>
- <div id="topictypes" style="display:none;width:100%;">
- <table width="100%">
- <tr><td class="item_title" colspan="2">主题分类</td></tr>
- <tr>
- <td class="vtop rowform">
- <cc2:textbox id="topictypes" runat="server" RequiredFieldType="暂无校验" width="370" height="50" TextMode="MultiLine"></cc2:textbox>
- </td>
- <td class="vtop"></td>
- </tr>
- <tr><td class="item_title" colspan="2">模板风格</td></tr>
- <tr>
- <td class="vtop rowform">
- c2:DropDownList id="templateid" runat="server"></cc2:DropDownList>
- </td>
- <td class="vtop"></td>
- </tr>
- </table>
- </div>
- <div class="Navbutton">
- <cc2:Hint id="Hint1" runat="server" HintImageUrl="../images"></cc2:Hint>
- <cc2:Button id="Submit" runat="server" Text=" 添 加 "></cc2:Button>
- </div>
- </form>
- <%=footer%>
- </body>
- </html>