_auditpostlist.ascx

来自「热点社区论坛系统 v5.0.1 软件类别: .NET源码 / 论坛社区 软」· ASCX 代码 · 共 61 行

ASCX
61
字号
<%@ Control %>
<table class="topbar2" cellpadding="0" cellspacing="0">
<tr>
<td height="25">
<table class="topbar1" id="htmb" cellspacing="0" cellpadding="0" width="100%" border="0" >
    <tbody>
        <tr>
            <td width="8" height="21">
                <img height="1" src="Images/spacer.gif" width="8">
            </td>
            <td height="21" class="buttonItem" title="添加审核设置" fileName="HDLab_BadWords.aspx?ActionType=Add" action="add" needParams="0" nowrap>
                <img alt="添加审核设置" hspace="1" src="Images/add.gif" align="absMiddle" border="0" /> 添加审核设置
            </td>
            <td><img alt="" hspace="1" src="Images/line.gif" align="absMiddle" border="0" /></td>
            <td height="21" class="buttonItem" title="编辑审核设置" fileName="HDLab_BadWords.aspx?ActionType=Edit" action="edit" objectID="SettingID" nowrap>
                <img alt="编辑审核设置" hspace="1" src="Images/edit.gif" align="absMiddle" border="0" /> 编辑审核设置
            </td>
             <td><img alt="" hspace="1" src="Images/line.gif" align="absMiddle" border="0" /></td>
            <td height="21" class="buttonItem" title="删除审核设置" fileName="HDLab_BadWords.aspx?ActionType=del" action="del" objectID="SettingID" nowrap>
                <img alt="删除审核设置" hspace="1" src="Images/delete.gif" align="absMiddle" border="0" /> 删除审核设置
            </td>
            <td width="100%"></td>
        </tr>
    </tbody>
</table>
</td>
</tr>
</table>
<table class="datalist" cellSpacing="0" cellPadding="2" multiSelected="False">
	<thead>
		<tr align=center >
			<td width="5%" height="20"><input type="checkbox" disabled="false" /></td>
			<td width="15%">设置名称</td>
			<td width="20%">审核范围</td>
			<td width="60%">内容审核选项</td>
		</tr>
	</thead>
	<tbody>
    <!--模板开始-->
    <asp:Repeater ID="SettingList" runat="server">
        <ItemTemplate>
		<tr class="listitem" align="left">
			<td align="center"><input type="checkbox" name="SettingID" value="<%# DataBinder.Eval(((DictionaryEntry)Container.DataItem).Value, "ID")%>" /></td>
			<td><%#DataBinder.Eval(((DictionaryEntry)Container.DataItem).Value, "Name")%></td>
			<td><%#DataBinder.Eval(((DictionaryEntry)Container.DataItem).Value, "ActionList")%></td>
			<td><%#DataBinder.Eval(((DictionaryEntry)Container.DataItem).Value, "ContentCheckList")%></td>
		</tr>
        </ItemTemplate>
        <AlternatingItemTemplate>
        <tr class="listalternatingitem" align="left">
			<td align="center"><input type="checkbox" name="SettingID" value="<%# DataBinder.Eval(((DictionaryEntry)Container.DataItem).Value, "ID")%>" /></td>
			<td><%#DataBinder.Eval(((DictionaryEntry)Container.DataItem).Value, "Name")%></td>
			<td><%#DataBinder.Eval(((DictionaryEntry)Container.DataItem).Value, "ActionList")%></td>
			<td><%#DataBinder.Eval(((DictionaryEntry)Container.DataItem).Value, "ContentCheckList")%></td>
		</tr>
        </AlternatingItemTemplate>
    </asp:Repeater>
    <!-- 模板结束-->
    </tbody>
</table>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?