📄 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><%=webname%> - 管理员资料:<%=user%> - [<%=weburl%>]</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<style>
td{font-size:9pt;line-height:140%}
body{font-size:9pt;line-height:140%}
a:link { color: #0033CC; text-decoration: none }
a:visited { color: #0033CC; text-decoration: none }
a:active { color: #FF0000; text-decoration: none }
a:hover { color: #000000; text-decoration: underline}
</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="#555555">
<tr>
<td width="100%" colspan="2" bgcolor="#6A6A6A"><font color="#FFFFFF"><b><%=user%> 的个人资料</b></font></td>
</tr>
<tr>
<td width="280" bgcolor="#FFFFFF"> 帐号:<%=user%></td>
<td width="100" bgcolor="#FFFFFF" rowspan="5"> </td>
</tr>
<tr>
<td width="280" bgcolor="#FFFFFF"> 身份:<font color="#008080"><%
if dj="2" then response.write "管理员"
if dj="3" then response.write "站长"
%></font></td>
</tr>
<tr>
<td width="280" bgcolor="#FFFFFF"> 性别:<%=sex%></td>
</tr>
<tr>
<td width="280" bgcolor="#FFFFFF"> OICQ:<%=oicq%></td>
</tr>
<tr>
<td width="280" bgcolor="#FFFFFF"> E-Mail:<a href="mailto:<%=email%>"><%=email%></a></td>
</tr>
<tr>
<td width="100%" bgcolor="#FFFFFF" colspan="2">个性签名:<br><%=qm%></td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -