📄 member.asp
字号:
<!--#Include file="../Common/Inc_DatConn.asp"-->
<!--#Include file="Common/Inc_Config.asp"-->
<!--#Include file="Common/Inc_Function.asp"-->
<%
'┌─ 风云ASP在线 ────────────────────────┐
'│ │
'│ 作者:赵振波. http://www.fyasp.com │
'│ │
'│ Q Q:176189168 │
'│ │
'│ Email:fy96@163.com │
'│ │
'│ 程序定做,系统开发,网站制作,提供高质量的网络产品、技术和服务!│
'│ │
'│【版权声明】 │
'│ │
'│ 本程序版权归坐看风云所有,未经授权擅自修改、复制或散布本程序│
'│ │
'│的部分或全部,将承受严厉的民事和刑事处罚,对已知的违反者将给予法 │
'│ │
'│律范围内的全面制裁。对非法使用此程序所造成的一切后果本人概不负责!│
'│ │
'└─────────────────── http://www.fyasp.com ──┘
%>
<%if IsTimeOut(Session("strAccount"),Session("strPassWord")) then Response.Redirect "index.asp"%>
<html>
<head>
<title><% = strSiteName%> - 网站后台管理系统</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" href="Common/Site.css" type="text/css">
</head>
<%
Dim rdsMember
Dim sqlMember
Dim intMemberKey
Dim strMemberLevel
intMemberKey = Request.QueryString("ID")
if intMemberKey = "" then intMemberKey = 0
set rdsMember = Server.CreateObject("ADODB.Recordset")
sqlMember = "Select * From Dat_Member Where MemberKey = "& intMemberKey
rdsMember.Open sqlMember,Conn,1,1
if not rdsMember.EOF then
'if rdsMember("Point") > 0 then
' strMemberLevel = "付费"
'else
' strMemberLevel = "普通"
'end if
%>
<body topmargin="1" leftmargin="1">
<table border="0" width="460" cellspacing="0" cellpadding="0">
<tr>
<td width="100%" valign="top" align="center" class="booktable">
<table border="0" width="100%" cellspacing="1" cellpadding="0">
<tr>
<td width="20%" class="bottom" height="25" align="right">会员帐号:</td>
<td width="80%" class="banma1" height="25"> <% = rdsMember("Member")%></td>
</tr>
<tr>
<td class="bottom" height="25" align="right">会员级别:</td>
<td class="banma1" height="25"><%
Select case rdsMember("jb")
Case 0
Response.Write("<font color=#FF00FF> 普通会员</font>")
Case 1
Response.Write("<font color=#FFCC66> 高级会员</font>")
Case -1
Response.Write("<font color=#FFCC66> 高级会员申请中</font>")
case else
Response.Write(" 非法会员")
End Select
%>
</td>
</tr>
<tr>
<td class="bottom" height="25" align="right">密码:</td>
<td class="banma1" height="25"> <% = rdsMember("Password")%></td>
</tr>
<tr>
<td class="bottom" height="25" align="right">会员类型:</td>
<td class="banma1" height="25">
<%
if rdsMember("MemberType") = "1" then
Response.Write " 个人会员"
else
Response.Write " 企业会员"
end if
%>
</td>
</tr>
<%if rdsMember("MemberType") = "1" then%>
<tr>
<td class="bottom" height="25" align="right">会员点数:</td>
<td class="banma1" height="25"> <% = rdsMember("point")%></td>
</tr>
<tr>
<td class="bottom" height="25" align="right">真实姓名:</td>
<td class="banma1" height="25"> <% = rdsMember("RealName")%></td>
</tr>
<%else%>
<tr>
<td class="bottom" height="25" align="right">企业名称:</td>
<td class="banma1" height="25"> <% = rdsMember("CompanyName")%></td>
</tr>
<tr>
<td class="bottom" height="25" align="right">联系人:</td>
<td class="banma1" height="25"> <% = rdsMember("ContactMan")%></td>
</tr>
<%end if%>
<tr>
<td class="bottom" height="25" align="right">电话:</td>
<td class="banma1" height="25"> <% = rdsMember("Tel")%></td>
</tr>
<tr>
<td class="bottom" height="25" align="right">传真:</td>
<td class="banma1" height="25"> <% = rdsMember("Fax")%></td>
</tr>
<tr>
<td class="bottom" height="25" align="right">Homepage:</td>
<td class="banma1" height="25"> <a href="<% = rdsMember("Homepage")%>" target="_blank"><% = rdsMember("Homepage")%></a></td>
</tr>
<tr>
<td class="bottom" height="25" align="right">E-Mail:</td>
<td class="banma1" height="25"> <a href="mailto:<% = rdsMember("Email")%>"><% = rdsMember("Email")%></a></td>
</tr>
<tr>
<td class="bottom" height="25" align="right">联系地址:</td>
<td class="banma1" height="25"> <% = rdsMember("Add")%></td>
</tr>
<tr>
<td class="bottom" height="25" align="right">邮政编码:</td>
<td class="banma1" height="25"> <% = rdsMember("Postalcode")%></td>
</tr>
<!--
<tr>
<td class="bottom" height="25" align="right">目前点数:</td>
<td class="banma1" height="25"> <% = rdsMember("Point")%></td>
</tr>
-->
<tr>
<td class="bottom" height="25" align="right">注册 IP:</td>
<td class="banma1" height="25"> <% = rdsMember("IP")%></td>
</tr>
<tr>
<td class="bottom" height="25" align="right">注册时间:</td>
<td class="banma1" height="25"> <% = rdsMember("CreateTime")%></td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="100%" height="40" align="right"><input onclick="parent.location.href='javascript:close();'" type="button" value="关闭窗口" class="button" name="Button"> </td>
</tr>
</table>
</body>
<%
end if
rdsMember.Close
set rdsMember = nothing
%>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -