📄 p2srechk.asp
字号:
<%@ LANGUAGE = VBScript %>
<!--#include file="conn.asp"-->
<!--#include file="checklogin.asp"-->
<%
rs.Open "Select * From memberp2s Where Status = 'ReCheck' Order by MemberShip DESC, P2SCredits DESC",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="150" height="30" align="center">用户名</td>
<td width="50" align="center" height="30">用户级别</td>
<td width="50" height="30" align="center">任务编号</td>
<td width="60" height="30" align="center">注册类型</td>
<td width="60" height="30" align="center">奖励数额</td>
<td width="50" height="30" align="center">随机码</td>
<td width="100" height="30" align="center">注册日期</td>
<td height="30" align="center">备注</td>
<td width="50" height="30" align="center">积分</td>
<td width="30" height="30" align="center">复核</td>
</tr>
<%
While Not rs.EOF
UserName = rs ("UserName")
MemberShip = rs ("MemberShip")
P2SID = rs ("P2SID")
P2SType = rs ("P2SType")
P2SCredits = rs ("P2SCredits")
RandomCode = rs ("RandomCode")
P2SDate = rs ("P2SDate")
P2SMemo = rs ("P2SMemo")
P2SJiFen = rs ("P2SJiFen")
%>
<form method="POST" action="p2srechk_do.asp">
<tr>
<td height="30" align="center"><input type="text" name="UserName" size="15" value="<%= UserName %>" readonly></td>
<td height="30" align="center"><input type="text" name="MemberShip" size="3" value="<%= MemberShip %>" readonly></td>
<td height="30" align="center"><input type="text" name="P2SID" size="5" value="<%= P2SID %>" readonly></td>
<% If P2SType = "Dollars" Then %>
<td height="30" align="center"><select size="1" name="P2SType">
<option value="Dollars" selected>现金</option>
<option value="Points">点数</option>
</select></td>
<% Else %>
<td height="30" align="center"><select size="1" name="P2SType">
<option value="Dollars">现金</option>
<option value="Points" selected>点数</option>
</select></td>
<% End If %>
<td align="center"><input type="text" name="P2SCredits" size="6" value="<%= P2SCredits %>" readonly></td>
<td align="center"><input type="text" name="RandomCode" size="4" value="<%= RandomCode %>" readonly></td>
<td height="30" align="center"><input type="text" name="P2SDate" size="10" value="<%= P2SDate %>" readonly></td>
<td height="30" align="center"><textarea rows="4" name="P2SMemo" cols="50"><%= P2SMemo %></textarea></td>
<td height="30" align="center"><input type="text" name="P2SJiFen" size="2" value="<%= P2SJiFen %>"></td>
<td height="30" align="center">
<input type="submit" value="复核" name="Button"></td>
</tr>
</form>
<%
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 + -