📄 user_info.asp
字号:
<!--#include file="conn.asp"-->
<!--#include file="admin/config.asp"-->
<%dim username
username=Trim(Request.QueryString("username"))%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>用户资料 - <%=SiteSetting(0)%></title>
<STYLE>
BODY {
scrollbar-face-color : <%=SkinSetting(10)%>;
scrollbar-shadow-color : <%=SkinSetting(11)%>;
scrollbar-highlight-color : <%=SkinSetting(12)%>;
scrollbar-3dlight-color : <%=SkinSetting(13)%>;
scrollbar-darkshadow-color : <%=SkinSetting(14)%>;
scrollbar-track-color : <%=SkinSetting(15)%>;
scrollbar-arrow-color : <%=SkinSetting(16)%>;
}
.mouseover {
background-color: <%=SkinSetting(8)%>;
border: 1px solid <%=SkinSetting(9)%>;
}
.mouseout {
background-color: <%=SkinSetting(3)%>;
}
.mouseout2 {
background-color: <%=SkinSetting(4)%>;
}
</STYLE>
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<body bgcolor="<%=SkinSetting(0)%>" background="<%=SkinSetting(1)%>" leftmargin="0" topmargin="0">
<!--#include file="header.asp"-->
<table width="760" border="0" cellspacing="0" cellpadding="0" align="<%=SiteSetting(9)%>">
<tr>
<td bgcolor="<%=SkinSetting(3)%>">
<table width="760" border="0" cellpadding="0" cellspacing="0" class="xuxian">
<tr>
<td height="300" valign="top">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="18" valign="bottom" class="xuxian3"> <img src="images/point1.gif" width="17" height="16" align="absmiddle">
当前位置:<a href="default.asp">首页</a> \ 用户资料</td>
</tr>
</table>
<p>
<%dim sql,rs
sql="select Email,QQ,ICQ,MSN,Homepage,Point,RegDate from UserInfo where usr='"&username&"'"
set rs=conn.execute(sql)%>
</p>
<table width="300" border="0" align="center" cellpadding="2" cellspacing="0" bgcolor="<%=SkinSetting(4)%>">
<tr bgcolor="<%=SkinSetting(7)%>">
<td colspan="2" align="center" class="TdBorderB"><font color="<%=SkinSetting(6)%>">“</font><font color="<%=SkinSetting(6)%>"><%=username%>”的详细资料</font></td>
</tr>
<tr>
<td width="76" height="24" align="right" class="TdBorderRB">用户名</td>
<td width="216" class="TdBorderB"><%=username%></td>
</tr>
<tr>
<td height="24" align="right" class="TdBorderRB">E-mail</td>
<td class="TdBorderB"><a href="mailto:<%=rs(0)%>"><%=rs(0)%></a> </td>
</tr>
<tr>
<td height="24" align="right" class="TdBorderRB">腾讯QQ</td>
<td class="TdBorderB"><%=rs(1)%> </td>
</tr>
<tr>
<td height="24" align="right" class="TdBorderRB">ICQ</td>
<td class="TdBorderB"><%=rs(2)%> </td>
</tr>
<tr>
<td height="24" align="right" class="TdBorderRB">MSN</td>
<td class="TdBorderB"><%=rs(3)%> </td>
</tr>
<tr>
<td height="24" align="right" class="TdBorderRB">主页</td>
<td class="TdBorderB"><a href="<%=rs(4)%>"><%=rs(4)%></a> </td>
</tr>
<tr>
<td height="24" align="right" class="TdBorderRB">积分</td>
<td class="TdBorderB"><%=rs(5)%></td>
</tr>
<tr>
<td height="24" align="right" class="TdBorderRB">注册时间</td>
<td class="TdBorderB"><%=rs(6)%></td>
</tr>
</table>
<%
set rs=nothing
conn.close
set conn=nothing%>
<br> </td>
</tr>
</table></td>
</tr>
</table>
<!--#include file="footer.asp"-->
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -