⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 user.asp

📁 核心惊云下载系统
💻 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%>的个人资料</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<LINK href="../style.css" rel=stylesheet>
</head>
<body><center>
<SCRIPT>
if (window != top) top.location.href = location.href;
//self.moveTo(0,0);
self.resizeTo(410,218);
</SCRIPT>
<table border="0" cellspacing="1" width="380" bgcolor="#EEEEEE">
  <tr>
    <td width="100%" colspan="2" bgcolor="#99CC00" height="24">&nbsp;<font color="#FFFFFF"><b><%=user%>的个人资料</b></font></td>
  </tr>
  <tr>
    <td width="280" bgcolor="#FFFFFF" height="22">&nbsp;&nbsp;&nbsp; 帐号:<%=user%></td>  
    <td width="100" bgcolor="#FFFFFF" rowspan="5"></td>
  </tr>
  <tr>
    <td width="280" bgcolor="#FFFFFF" height="22">&nbsp;&nbsp;&nbsp; 身份:<font color="#008080"><%  
    if dj="2" then response.write "管理员"
    if dj="3" then response.write "站长"
    if dj="0" then response.write "普通会员"
    %></font></td>
  </tr>
  <tr>
    <td width="280" bgcolor="#FFFFFF" height="22">&nbsp;&nbsp;&nbsp; 性别:<%=sex%></td>  
  </tr>
  <tr>
    <td width="280" bgcolor="#FFFFFF" height="22">&nbsp;&nbsp;&nbsp; OICQ:<%=oicq%></td>  
  </tr>
  <tr>
    <td width="280" bgcolor="#FFFFFF" height="22">&nbsp; E-Mail:<a href="mailto:<%=email%>"><%=email%></a></td>  
  </tr>
  <tr>
    <td width="100%" bgcolor="#FFFFFF" colspan="2">个性签名:<br><%=qm%></td>
  </tr>
  </table></center>
</body>
</html>

⌨️ 快捷键说明

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