📄 user.asp
字号:
<!--#include file="config.asp"-->
<!--#include file="mdb_path_user.asp"-->
<%
user=request("user")
set rs=server.CreateObject("ADODB.RecordSet")
rs.open "select * from UserInfo where user='"&request("user")&"'",conn,1,2
if not rs.eof then
email=rs("email")
oicq=rs("oicq")
homepage=rs("homepage")
sex=rs("sex")
face=rs("face")
qm=rs("qm")
dj=rs("dj")
end if
rs.close
set rs=nothing
conn.close
set conn=nothing
%>
<html>
<head>
<meta http-equiv="Content-Language" content="zh-cn">
<title><%=user%> - [<%=weburl%>]</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<style type="text/css">
<!--
td {
font-size: 12px;
font-family: "宋体";
}
.p1
{
FONT-FAMILY: "宋体";
FONT-SIZE: 9pt;
LETTER-SPACING: 1px;
LINE-HEIGHT: 135%;
MARGIN-BOTTOM: 0px;
MARGIN-TOP: 0px;
PADDING-BOTTOM: 0px;
PADDING-TOP: 4px;
WORD-SPACING: 1px
}
A:hover {
COLOR: #0000FF
}
-->
</style>
</head>
<body topmargin="1" leftmargin="1">
<SCRIPT>
if (window != top) top.location.href = location.href;
//self.moveTo(0,0);
self.resizeTo(410,218);
</SCRIPT>
<table border="0" cellspacing="1" style="border-collapse: collapse" width="380" bgcolor="#2DC6F9" cellpadding="3">
<tr>
<td width="376" colspan="3" bgcolor="#B6EBFD"> <b><%=user%>的个人资料</b></td>
</tr>
<tr>
<td width="72" bgcolor="#DAF5FE"> 帐号:</td>
<td width="190" bgcolor="#DAF5FE"><%=user%></td>
<td width="108" bgcolor="#DAF5FE" rowspan="5" align="center"><img border="0" src="../images/face/<%=face%>.gif" width="90" height="90"></td>
</tr>
<tr>
<td width="72" bgcolor="#DAF5FE"> 身份:</td>
<td width="190" bgcolor="#DAF5FE"><font color="#4D9CC8"><%
if dj="0" then response.write "普通会员"
if dj="1" then response.write "高级会员"
if dj="2" then response.write "管理员"
if dj="3" then response.write "站长"
%></font></td>
</tr>
<tr>
<td width="72" bgcolor="#DAF5FE"> 性别:</td>
<td width="190" bgcolor="#DAF5FE"><%=sex%></td>
</tr>
<tr>
<td width="72" bgcolor="#DAF5FE"> OICQ:</td>
<td width="190" bgcolor="#DAF5FE"><%=oicq%></td>
</tr>
<tr>
<td width="72" bgcolor="#DAF5FE"> E-Mail:</td>
<td width="190" bgcolor="#DAF5FE"><a href="mailto:<%=email%>"><%=email%></a></td>
</tr>
<tr>
<td width="72" bgcolor="#DAF5FE">个性签名:<br></td>
<td width="311" bgcolor="#DAF5FE" colspan="2" class="p1"><%=qm%></td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -