📄 a_count_ldeatil.asp
字号:
<!--#include file="Include/conn.asp"-->
<!--#include file="Include/Islogin.asp"-->
<%'创建时间:2004/08/17
'创建人:
'功能:用于总代理统计连码下注分类详细
%>
<%
secondtype=request.querystring("secondtype")
set rs_l=server.CreateObject("adodb.recordset")
if session("A_rank")=1 then
count_sql="select invest_secondtype,invest_money,invest_number,invest_name,invest_time from invest_l where invest_frist='"&session("a_name")&"' and invest_banlance=0 and invest_type='4' and invest_issue="&count_issue&" and invest_secondtype='"&secondtype&"'"
else
count_sql="select invest_secondtype,invest_money,invest_number,invest_name,invest_time from invest_l where invest_second='"&session("a_name")&"' and invest_banlance=0 and invest_type='4' and invest_issue="&count_issue&" and invest_secondtype='"&secondtype&"'"
end if
' response.write count_sql
rs_l.open count_sql,conn,1,1
%>
<html>
<head>
<link href="include/css.css" rel="stylesheet" type="text/css">
<meta http-equiv='refresh' content='5'>
<title>无标题文档</title>
</head>
<body style="background-color: #F2F2F2">
<p></p>
<table border="1" width="739" cellspacing="0" cellpadding="0" bordercolor="#AEB8C1" style="border-collapse: collapse" height="10%">
<tr>
<td width="739" valign="top">
<table width="98%" border="0" align="center" cellspacing="1" bgcolor="#AEB8C1">
<tr align="center" bgcolor="#CCCCCC">
<td width="84" height="22" bgcolor="#BCD5E4">下注会员</td>
<td width="168" height="22" bgcolor="#BCD5E4">下注时间</td>
<td width="268" height="22" bgcolor="#BCD5E4">内容</td>
<td width="107" height="22" bgcolor="#BCD5E4">下注金额</td>
<td width="66" height="22" bgcolor="#BCD5E4">占成数</td>
</tr>
<% do while not rs_l.eof %>
<tr align="center" bgcolor="#f2f2f2">
<td height="20" width="84"><%=rs_l("invest_name")%></td>
<td height="20" width="168"><%=formatdatetime(rs_l("invest_time"),0)%></td>
<td height="20" width="268" align="right">第<%=count_issue%>期 <font color="#FF0000"><% select case rs_l("invest_secondtype")
case "1"
response.write "二全中"
case "2"
response.write "二中特"
case "3"
response.write "特串"
case "4"
response.write "三全中"
case "5"
response.write "三中二"
end select
response.write " "
response.write rs_l("invest_number")%></font></td>
<td height="20" width="107" align="right"><%=rs_l("invest_money")%></td>
<td height="20" width="66" align="right">0.00</td>
</tr>
<%rs_l.movenext
loop%>
</table><br><center><a href="#" class="style4"onclick="history.go(-1)">
<font size="2" color="#0000FF">>>返 回<<</font></a><font color="#0000FF" size="2">
</font>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -