📄 admin_boardadd.aspx
字号:
<%@ Page language="c#" Codebehind="Admin_BoardAdd.aspx.cs" AutoEventWireup="false" Inherits="Dxbbs.Admin.Admin_BoardAdd" EnableViewState="True"%>
<HTML>
<HEAD>
<title>论坛后台管理</title>
<base target="_self">
<LINK href="css/style.css" type="text/css" rel="stylesheet">
</HEAD>
<body bgcolor="#cad7f7">
<form runat="server" ID="Form1">
<table cellpadding="2" cellspacing="1" border="0" width="100%" class="tableBorder" align="center"
bgcolor="#ffffff" height="175">
<tr align="center">
<td height="37" bgcolor="#4455aa"><font color="#ffffff">论坛小版面添加/修改</font></A></td>
<tr>
<td width="100%" class="tdbg" height="218" bgcolor="#f1f3f5" valign="top">
<asp:TextBox id="BoardID" Visible="False" runat="server"></asp:TextBox>
<asp:TextBox id="Temp_Master" Visible="False" runat="server"></asp:TextBox>
<table border="0" cellpadding="0" cellspacing="0" width="100%" height="327" align="center">
<tr>
<td width="302" height="34" align="right">所属大版:</td>
<td width="76" height="34"></td>
<td width="600" height="34">
<asp:DropDownList id="BigBoard_List" runat="server"></asp:DropDownList>
</td>
</tr>
<tr>
<td width="302" height="32" align="right">版面名称:</td>
<td width="76" height="32">
</td>
<td width="600" height="32">
<asp:TextBox id="Board_Title" MaxLength="100" runat="server"></asp:TextBox>
<asp:RequiredFieldValidator id="RequiredFieldValidator" ErrorMessage="版面名称不能为空" ControlToValidate="Board_Title"
Display="Dynamic" runat="server"></asp:RequiredFieldValidator>
</td>
</tr>
<tr>
<td width="302" height="32" align="right">版名颜色:</td>
<td width="76" height="32">
</td>
<td width="600" height="32">
<asp:TextBox id="Board_TitleColor" MaxLength="100" Text="#000000" runat="server"></asp:TextBox>
<asp:RequiredFieldValidator id="RequiredFieldValidator1" ErrorMessage="版面名称颜色不能为空" ControlToValidate="Board_TitleColor"
Display="Dynamic" runat="server"></asp:RequiredFieldValidator>
</td>
</tr>
<tr>
<td width="302" height="30" align="right">版面说明:</td>
<td width="76" height="30">
</td>
<td width="600" height="30">
<asp:TextBox id="Board_Content" MaxLength="200" Width="500px" Height="100px" TextMode="MultiLine"
runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td width="302" height="30" align="right">版规:</td>
<td width="76" height="30">
</td>
<td width="600" height="30">
<asp:TextBox id="Board_Rule" MaxLength="200" Width="500px" Height="100px" TextMode="MultiLine"
runat="server"></asp:TextBox>
<asp:RequiredFieldValidator id="RequiredFieldValidator2" ErrorMessage="版规不能为空" ControlToValidate="Board_Rule"
Display="Dynamic" runat="server"></asp:RequiredFieldValidator>
</td>
</tr>
<tr>
<td width="302" height="28" align="right">版面图片:</td>
<td width="76" height="28">
</td>
<td width="600" height="28">
<asp:TextBox id="Board_Face" MaxLength="200" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td width="302" height="35" align="right">版主:</td>
<td width="76" height="35">
</td>
<td width="600" height="35">
<asp:TextBox id="Board_Master" MaxLength="20" runat="server"></asp:TextBox>
多个版主用 | 分隔
</td>
</tr>
<tr>
<td width="302" height="35" align="right">是否锁定:</td>
<td width="76" height="35">
</td>
<td width="600" height="35">
<asp:DropDownList id="Board_IsLock" runat="server">
<asp:ListItem Value="0">否</asp:ListItem>
<asp:ListItem Value="1">是</asp:ListItem>
</asp:DropDownList>
</td>
</tr>
<tr>
<td width="302" height="35" align="right">查看该版帖子等级:</td>
<td width="76" height="35">
</td>
<td width="600" height="35">
<asp:DropDownList id="Board_State" runat="server">
<asp:ListItem Value="所有人">所有人</asp:ListItem>
<asp:ListItem Value="注册用户">注册用户</asp:ListItem>
<asp:ListItem Value="论坛贵宾">论坛贵宾</asp:ListItem>
<asp:ListItem Value="版主">版主</asp:ListItem>
<asp:ListItem Value="超级版主">超级版主</asp:ListItem>
<asp:ListItem Value="管理员">管理员</asp:ListItem>
</asp:DropDownList>
</td>
</tr>
<tr>
<td width="302" height="35" align="right">添加时间:</td>
<td width="76" height="35">
</td>
<td width="600" height="35">
<asp:Label id="Board_AddTime" ForeColor="#FF0000" runat="server"></asp:Label>
</td>
</tr>
<tr>
<td align="center" height="46" width="978" colspan="3">
<input type="submit" value="确定提交" runat="server"
ID="Submit1" NAME="Submit1">
</td>
</tr>
</table>
</td>
</tr>
</table>
</form>
</body>
</HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -