📄 memberdianshu.asp
字号:
<%@ LANGUAGE = VBScript %>
<!--#include file="conn.asp"-->
<!--#include file="checklogin.asp"-->
<%
rs.Open "Select * From member order by ID",Conn
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link REL="StyleSheet" HREF="../tjscripts.css" TYPE="text/css" MEDIA="screen">
<title><%= SiteTitle %>后台管理系统</title>
</head>
<body topmargin="0" leftmargin="0">
<div align="center">
<table border="1" cellspacing="1" width="100%" bordercolor="#0033CC">
<tr>
<td width="100%" height="31" bgcolor="#FFCC00"><b>会员点数收入</b></td>
</tr>
<tr>
<td width="100%">
<div align="center">
<table border="1" cellspacing="1" width="100%" bordercolor="#A50F18">
<tr>
<td width="7%" height="30" align="center">编号</td>
<td width="17%" height="30" align="center">电子邮件地址</td>
<td width="12%" height="30" align="center">用户名</td>
<td width="8%" height="30" align="center">介绍人</td>
<td width="8%" height="30" align="center">注册奖励</td>
<td width="8%" height="30" align="center">个人所得</td>
<td width="8%" height="30" align="center">下线所得</td>
<td width="8%" height="30" align="center">另外奖励</td>
<td width="8%" height="30" align="center">扣 点</td>
<td width="8%" height="30" align="center">合计收入</td>
<td width="8%" height="30" align="center">有效性</td>
</tr>
<%
While Not rs.EOF
SignupPoints = rs ("SignupPoints")
Points = rs ("Points")
Points1 = rs ("Points1")
Points2 = rs ("Points2")
Points3 = rs ("Points3")
Points4 = rs ("Points4")
Points5 = rs ("Points5")
Points6 = rs ("Points6")
PointsCredits = rs ("PointsCredits")
PointsDebits = rs ("PointsDebits")
AllPoints = SignupPoints + Points + Points1 + Points2 + Points3 + Points4 + Points5 + Points6 + PointsCredits - PointsDebits
xiaxianpoints = Points1 + Points2 + Points3 + Points4 + Points5 + Points6
ID = rs ("ID")
Email = rs ("Email")
UserName = rs ("UserName")
PassWord = rs ("PW")
Referral = rs ("Referral")
SignupTime = rs ("SignupTime")
SignupIP = rs ("SignupIP")
ProxyIP = rs ("ProxyIP")
PaymentMethod = rs ("PaymentMethod")
PaymentAccount = rs ("PaymentAccount")
Vacation = rs ("Vacation")
Active = rs ("Active")
Valid = rs ("Valid")
%>
<tr>
<td width="7%" height="30" align="center"><%= ID %></td>
<td width="17%" height="30" align="center"><%= Email %></td>
<td width="12%" height="30" align="center"><%= UserName %></td>
<td width="8%" height="30" align="center"><%= Referral %></td>
<td width="8%" height="30" align="center"><%= SignupPoints %></td>
<td width="8%" height="30" align="center"><%= points %></td>
<td width="8%" height="30" align="center"><%= xiaxianpoints %></td>
<td width="8%" height="30" align="center"><%= pointsCredits %></td>
<td width="8%" height="30" align="center"><%= pointsDebits %></td>
<td width="8%" height="30" align="center"><%= Allpoints %></td>
<td width="8%" height="30" align="center"><%= Valid %></td>
</tr>
<%
rs.MoveNext
Wend
rs.Close
Set rs = nothing
Conn.Close
Set Conn = nothing
%>
</table>
</div>
</td>
</tr>
<tr>
<td width="100%" align="center"><a href="javascript:history.back();"><b>返回</b></a></td>
</tr>
</table>
</div>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -