page_admin_user_detail.html.asp

来自「1] 校友多种方式注册认证[直接注册,答问注册,认证注册] 2] 校友论坛 」· ASP 代码 · 共 119 行

ASP
119
字号
<!-- #include file="page_admin_user_header.html.asp" -->             
<!-- ##### 主栏目开始 ##### --->
<div id="main_content">
	<div id="main_content_title">
		<div class="note">用户详细信息:</div>
	</div>
	<div id="main_content_list">
	<%Call ActionView(CONST_ACTION_FUNC)%>
	<% 
If IsObject(TAG_objDicUnit) AND TAG_objDicUnit.Exists("Exist") Then 
%>
<!--html_row DataRS=TAG_objDicUnit-->
		<table class="main" width="80%" align="center"  border="0" cellspacing="1" cellpadding="3">
		<tbody>
		<tr  class="even" width="100%">
			<td class="even" width="45%" valign="top" class="note">
			&nbsp;&nbsp;[帐号] <%=TAG_objDicUnit.Item("USER_ACCOUNT")%><br>
			&nbsp;&nbsp;[姓名] <%=TAG_objDicUnit.Item("USER_REALNAME")%><br>
			&nbsp;&nbsp;[积分] <%=TAG_objDicUnit.Item("USER_LEVEL")%>分</td>
			<td class="odd" width="55%" valign="top" align="center"><%=TAG_objDicUnit.Item("USER_QQ_SHOW")%></td>
		</tr>
		<tr  class="even" width="100%">
			<td class="even" valign="top">
			&nbsp;班级:<%=TAG_objDicUnit.Item("USER_CLASS")%></td>
			<td class="odd" valign="top">
			&nbsp;登陆:<%=TAG_objDicUnit.Item("USER_LOGIN_COUNT")%>次</td>
		</tr>
		<tr  class="even" width="100%">
		<td class="even" valign="top">
			&nbsp;性别:<%=TAG_objDicUnit.Item("USER_SEX")%></td>
			<td class="odd" valign="top">
			&nbsp;职业:<%=TAG_objDicUnit.Item("USER_WORK")%></td>
		</tr>
		<tr  class="even" width="100%">
			<td class="even" valign="top">
			&nbsp;QQ号:<%=TAG_objDicUnit.Item("USER_QQ")%></td>
			<td class="odd" valign="top">
			&nbsp;相片:<%=TAG_objDicUnit.Item("USER_PHOTO")%>张,&nbsp;相片评论:<%=TAG_objDicUnit.Item("USER_REVIEW")%>条</td>
		</tr>
		<tr  class="even" width="100%">
			<td class="even" valign="top">
			&nbsp;留言:<%=TAG_objDicUnit.Item("USER_BOARD")%>条</td>
			<td class="odd" valign="top">
			&nbsp;发贴:<%=TAG_objDicUnit.Item("USER_TOPICS")%>条,&nbsp;回贴:<%=TAG_objDicUnit.Item("USER_REPLY")%>条</td>
		</tr>
		<tr  class="even" width="100%">
			<td class="even" valign="top">
			&nbsp;生日:<%=TAG_objDicUnit.Item("USER_BIRTH")%></td>
			<td class="odd" valign="top">
			&nbsp;入学年份:<%=TAG_objDicUnit.Item("USER_ENROLL")%>年</td>
		</tr>
		<tr  class="even" width="100%">
			<td class="even" valign="top">
			&nbsp;邮箱:<a href="<%=TAG_objDicUnit.Item("USER_EMAIL")%>" title='给<%=TAG_objDicUnit.Item("USER_REALNAME")%>发邮件'><%=TAG_objDicUnit.Item("USER_EMAIL")%></a></td>
			<td class="odd" valign="top">
			&nbsp;毕业年份:<%=TAG_objDicUnit.Item("USER_GRAD")%>年</td>
		</tr>
		<tr  class="even" width="100%">
			<td class="even" valign="top">
			&nbsp;电话:<%=TAG_objDicUnit.Item("USER_TELE")%></td>
			<td class="odd" valign="top">
			&nbsp;注册:<%=TAG_objDicUnit.Item("USER_ADD_DATE")%></td>
		</tr>
		<tr  class="even" width="100%">
			<td class="even" valign="top">
			&nbsp;ID号:<%=TAG_objDicUnit.Item("USER_ID")%></td>
			<td class="even" valign="top">
			&nbsp;最近登陆:<%=TAG_objDicUnit.Item("USER_LAST_TIME")%></td>
		</tr>
		<tr  class="even" width="100%">
			<td class="even" valign="top">
			&nbsp;收到短信<font color=red><%=TAG_objDicUnit.Item("USER_SMS")%>条</font></td>
			<td class="odd" valign="top">
			<font color=red>&nbsp;<%=TAG_objDicUnit.Item("USER_NEW_SMS")%>条未读</font></td>
		</tr>
		<tr  class="even" width="100%">
			<td class="even" valign="top">
			&nbsp;星座:<%=TAG_objDicUnit.Item("USER_CON")%></td>
			<td class="odd" valign="top">
			&nbsp;生肖:<%=TAG_objDicUnit.Item("USER_ANIMAL")%></td>
		</tr>
		<tr  class="even" width="100%"> 
			<td class="even" colspan="2" >
			&nbsp;通信地址:<%=TAG_objDicUnit.Item("USER_ADDRESS")%></td>
		</tr>
		<tr  class="even" width="100%"> 
			<td class="odd" colspan="2" >
			&nbsp;工作单位:<%=TAG_objDicUnit.Item("USER_WORKSHOP")%></td>
		</tr>
		<tr  class="even" width="100%"> 
		<td class="even" colspan="2" >
			&nbsp;IP地址:<%=TAG_objDicUnit.Item("USER_LAST_IP")%></td>
		</tr>
		<tr  class="even" width="100%"> 
			<td class="odd" colspan="2" >
			&nbsp;注册身份:<%=TAG_objDicUnit.Item("USER_AUTH")%></td>
		</tr>
		<tr  class="even" width="100%"> 
			<td class="even" colspan="2" >
			&nbsp;用户签名档:<br>
			<%=TAG_objDicUnit.Item("USER_SIGN")%>
			</td>
		</tr>
		</tbody>
		</table>
		<!--/html_row-->

<% 
If IsObject(TAG_objDicUnit) Then
	Set TAG_objDicUnit = Nothing 
End If
End If
%>
	</div>
	<div id="main_content_foot">&nbsp;</div>
</div>

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

⌨️ 快捷键说明

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