📄 turnover.asp
字号:
<!--#include file="conn.asp"-->
<%
if session("AdminName")="" then
Response.Redirect "admin_login.asp"
end if
%>
<html>
<head>
<title>无标题文档</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<form name="form1" method="post" action="">
<table width="684" border="0" align="center">
<tr>
<td> </td>
</tr>
<tr>
<td>
<table width="733" border="0" bgcolor="#E8E8F9">
<tr bgcolor="#000000">
<td width="83" height="18"> <b><font size="2" color="#FFFFFF">流水号</font></b></td>
<td width="193" height="18">
<div align="center"><b><font size="2" color="#FFFFFF">帐户邮件</font></b></div>
</td>
<td width="128" height="18">
<div align="center"><b><font size="2" color="#FFFFFF">目标手机</font></b></div>
</td>
<td width="188" height="18">
<div align="center"><b><font size="2" color="#FFFFFF">发送时间</font></b></div>
</td>
<td width="58" height="18">
<div align="center"><b><font size="2" color="#FFFFFF">结果</font></b></div>
</td>
<td width="59" height="18"><font size="2" color="#FFFFFF">金额</font></td>
</tr>
<%
Sql="Select * FROM turnover where Account_id like '"&request("id") &"'"
Rs.Open Sql,Conn,3,3
do while not rs.eof
%>
<tr bgcolor="#F5F5F5">
<td width="83" height="12"><font size="2"><%=rs("turnover_id")%></font></td>
<td width="193" height="12"><font size="2"><%=rs("Account_id")%></font></td>
<td width="128" height="12"><font size="2"><a href="#" title=<%=rs("Mail_text")%>><%=rs("ToMB")%></a></font></td>
<td width="188" height="12"><font size="2"><%=rs("Action_date")%></font></td>
<td width="58" height="12"><%=rs("Action_lable")%></td>
<td width="59" height="12"><%=rs("turnover_amount")%></td>
</tr>
<%
if not rs.eof then
rs.movenext
else
exit do
end if
loop
%>
</table>
</td>
</tr>
<tr>
<td> </td>
</tr>
</table>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -