www.gusucode.com > CC校友录贴吧 CCBar源码程序asp编程 > template_a/page_admin_meet_bbs_manage.html.asp

    <!-- #include file="page_admin_user_header.html.asp" -->             
<!-- ##### 主栏目开始 ##### --->
<div id="main_content">
	<div id="main_content_title">
		<div  id="note">聚会留言列表</div>
	</div>
	<div id="main_content_list">	
		<table class="main" width="100%"  border="0" cellspacing="1" cellpadding="0">
		<form name="vbfrom" id="vbform" action="admin_meet_bbs_del.asp" method="post">
			<tr id="main_list_index">
				<td width="2%" align="center">
					<input class="checkbox" onclick="CheckAll(this.form,this)" id="topcheckall" name="topcheckall" type="checkbox" value="" /></td>
				<td width="5%">序号</td>
				<td>用户名</td>
				<td width="8%">真实姓名</td>
				<td width="20%">发言时间</td>
				<td>发言内容</td>
			</tr>
			<%Call ActionView(CONST_ACTION_FUNC)%>
			<input type="hidden" name="intMeetId" value="<%=TAG_intMeetId%>" />
			<% 
If IsObject(TAG_objRS) Then 
Dim i : i = 0 
Do While Not TAG_objRS.Eof %>

			<tr onmouseover="LineMouseOver(this)" onmouseout="LineMouseOut(this,<%=i+1%>)" onmousedown="LineMouseDown(this,<%=i+1%>)" class="<%=TrStyleSet(i)%>">
				<td align="center">
				<input name="selId" type="checkbox" class="form_checkbox" id="selId" value="<%=TAG_objRS("MEET_BBS_ID")%>" /></td>
				<td><%=i+1%></td>
				<td><%=TAG_objRS("USER_ACCOUNT")%></td>
				<td><%=TAG_objRS("USER_REALNAME")%></td>
				<td><%=TAG_objRS("MEET_BBS_TIME")%></td>
				<td><%=UbbCode(TAG_objRS("MEET_BBS_CONTENT"))%></td>
			</tr>		
			
<% 
	i = i + 1 
	If i >= TAG_intPerPage Then  Exit Do 
	TAG_objRS.MoveNext
Loop
If IsObject(TAG_objRS) Then

	TAG_objRS.Close() 
	Set TAG_objRS = Nothing 
End If
End If
%>	
<input type="hidden" name="intPageNow" value="<%=TAG_intPageNow%>"  />

			<tr class="selectall">
				<td colspan="12">
					<input class="checkbox" onclick="CheckAll(this.form,this)" id="bottomcheckall" name="bottomcheckall" type="checkbox" value="" /> 全选
					<input type="button" value="删除聚会留言" class="submit" onclick="return CheckSelChkBox(this.form,'你确认删除所选聚会留言?');">
					&nbsp;<input type="button" value="返回聚会列表" class="submit" onclick="document.location.href='admin_meet_manage.asp'">
				</td>
			</tr>
		</form>
		</table>		    
	</div>
	<div id="main_content_foot">
		<div class="pagination"><%=TAG_strPageNav%></div>
	</div>
</div>

<!-- ##### 主栏目结束 ##### -->   
<!-- #include file="page_admin_footer.html.asp" -->