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

    <!-- #include file="page_user_header.html.asp" -->             
<!-- ##### 主栏目开始 ##### --->
<%Call ActionView(CONST_ACTION_FUNC)%>
<table border="0" cellpadding="0" cellspacing="0" align="center" valign="middle" width="93%"  style="word-break:break-all">
	<tr  class="nav_title_tr">
	 <td  class="nav_title_td" colspan="2">
		<div class="mainNav">我的相片收藏</div></td>
	</tr>
</table>
<table class="list_table" width="93%" border="0" cellpadding="2" cellspacing="1" align="center" valign="middle">
	<form name="vbfrom" id="vbform" action="user_my_topic_del.asp" method="post">
		<tr  class="list_title_tr"> 
			<td  class="list_title_td" width="5%" align="center">ID</td>
			<td  class="list_title_td" width="32%" align="center"><%=MakeOrder("ALBUM_TITLE","标题",TAG_strOrderUrl)%></td>
			<td  class="list_title_td" width="24%" align="center"><%=MakeOrder("ALBUM_ADD_TIME","上传时间",TAG_strOrderUrl)%></td>
			<td  class="list_title_td" width="12%" align="center"><%=MakeOrder("USER_REALNAME","上传者",TAG_strOrderUrl)%></td>
			<td  class="list_title_td" ><%=MakeOrder("COLLECTION_ADD_TIME","加入时间",TAG_strOrderUrl)%></td>
			<td  class="list_title_td"  align="center">删除</td>
		</tr>
		<% 
If IsObject(TAG_objRS) Then 
Dim i : i = 0 
Do While Not TAG_objRS.Eof %>

		<tr onmouseover="BgChange(this,'odd')" onmouseout="BgChange(this,'even')" class="even">
			<td class="list_td_change"><%=i+1%></td>
			<%
			Dim strImgUrl : strImgUrl = GetAlbumFileUrlLogic(GBL_objPubDB.objPubRS("ALBUM_IMG_FILE"),GBL_objPubDB.objPubRS("ALBUM_STATUS"))
			%>
			<td  ><a target="_blank" title="点击查看图片" href="<%=strImgUrl%>"><%=TAG_objRS("ALBUM_TITLE")%></a></td>
			<td class="list_td_change" align="center"><%=TAG_objRS("ALBUM_ADD_TIME")%></td>
			<td align="center"><span style="cursor:hand" title="查看用户信息" onclick="window.open('../address/address_userinfo_pop.asp?intUserId=<%=TAG_objRS("ALBUM_OWNER_ID")%>','','left=5,top=5,width=450,height=410,scrollbars=yes,status=yes');"><%=TAG_objRS("USER_REALNAME")%></span></td>
			<td align="list_td_change"><%=TAG_objRS("COLLECTION_ADD_TIME")%></td>
			<td><a href="user_collection_del.asp?intCollectionId=<%=TAG_objRS("COLLECTION_ID")%>" class="edit" onclick="return confirm('您确认删除?');">删除</span></a></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%>"  />
</form>
	<tr  class="list_title_tr"> 
		<td colspan=9><%=TAG_strPageNav%></td>
	</tr>
</tbody>
</table>

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