📄 agent_cz_view.asp
字号:
<!--#include file="chklogin.asp"-->
<%
call myobj.chkrq()
if request.Querystring("id")="" or isnull(request.Querystring("id"))=true then
response.write"<script language=javascript>alert('ID值无法获取');history.back();</Script>"
response.end
end if
if myobj.ChkNum(request.Querystring("id"))=false then
response.write"<script language=javascript>alert('ID值类型错误');history.back();</Script>"
response.end
end if
set rs=server.createobject("adodb.recordset")
rs.open "select * from cz_log where id="&request.Querystring("id")&"",conn,1,1
if rs.eof then
rs.close
set rs=nothing
conn.close
set conn=nothing
response.write"<script language=javascript>alert('该记录并不存在');history.back();</Script>"
response.end
else
agent_id=rs("agent_id")
member_id=rs("member_id")
cz_type=rs("cz_type")
cz_value=rs("cz_value")
cz_vip=rs("cz_vip")
cz_money=rs("cz_money")
cz_time=rs("cz_time")
end if
rs.close
set rs=nothing
conn.close
set conn=nothing
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>代理充值记录详细信息</title>
<link href="images/style2.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
body,td,th {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
color: #000000;
}
a:link {
color: #0000FF;
text-decoration: none;
}
a:visited {
color: #0000FF;
text-decoration: none;
}
a:hover {
color: #FF0000;
text-decoration: underline;
}
a:active {
text-decoration: none;
}
-->
</style>
</head>
<body leftMargin="0" topMargin="0" bgcolor="#FFFFFF">
<table width="320" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td> </td>
</tr>
</table>
<table width="320" height="25" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#3975CE">
<tr>
<td align="center" class="font1"><strong class="font1">代理商充值记录详细信息</strong></td>
</tr>
</table>
<table width="320" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#E7E7E7">
<tr>
<td align="center" bgcolor="#F7F7F7"><table width="300" border="0" cellspacing="0" cellpadding="0">
<tr>
<td> </td>
</tr>
</table>
<table width="300" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="25">代理商账号:<%=agent_id%></td>
</tr>
<tr>
<td height="25">充值账号:<%=member_id%></td>
</tr>
<tr>
<td height="25">充值类型:<%if cz_type=1 then%>个人计点<%end if%><%if cz_type=2 then%>个人包月<%end if%><%if cz_type=3 then%>网吧包月<%end if%></td>
</tr>
<tr>
<td height="25">充值数量:<%=cz_value%> <%if cz_type=1 then%>点<%else%>个月<%end if%></td>
</tr>
<tr>
<td height="25">VIP充值:<%if cz_vip=true then%>是<%else%>否<%end if%></td>
</tr>
<tr>
<td height="25">充值金额:<%=cz_money%> 元</td>
</tr>
<tr>
<td height="25">充值时间:<%=cz_time%></td>
</tr>
</table>
<table width="300" border="0" cellspacing="0" cellpadding="0">
<tr>
<td> </td>
</tr>
</table></td>
</tr>
</table>
<table width="320" height="50" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td align="center"><input name="button" type="button" class="button1" id="button" value="关闭窗口" onClick="vbscript:window.close()"></td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -