📄 fee_all.asp
字号:
<!--#include file="conn.asp" -->
<!--#include file="admin_dn.asp" -->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title></title>
<link href="image/css.css" rel="stylesheet" type="text/css">
</head>
<body leftmargin="5" topmargin="5">
<p>财务日志管理</p>
<p align="center"> </p>
<p align="center">-<a href="fee_all.asp">显示所有财务日志</a>- -<a href="fee_detail.asp">显示今天财务日志</a>-</p>
<p align="center"> </p>
<table width="100%" height="87" border="0" cellpadding="0" cellspacing="2">
<tr bgcolor="#D9D9D9">
<td width="116" height="13"><div align="center"><font color="#990000">用 户 名</font></div></td>
<td width="107"><div align="center"><font color="#990000">操 作</font></div></td>
<td width="317" bgcolor="#D9D9D9"><div align="center"><font color="#990000">项 目</font></div></td>
<td width="126"><div align="center"><font color="#990000">交 易 金 额</font></div></td>
<td width="86"><div align="center"><font color="#993300">余 额</font></div></td>
<td width="181"><div align="center"><font color="#990000">交 易 日 期</font></div></td>
<td width="50"><div align="center"><font color="#990000">删 除</font></div></td>
</tr>
<%
sql="select * from memo order by id desc"
pp=20
rs.open sql,conn,1,1
if not rs.eof then
count=rs.recordcount
if count=empty then
count=0
end if
if count/pp>(count\pp) then
totalpage=(count\pp)+1
else
totalpage=(count\pp)
end if
end if
pagecount=cint(request.querystring("topage"))
if pagecount<=0 then pagecount=1
if pagecount>totalpage then pagecount=totalpage
if not rs.eof then
rs.movefirst
rs.move (pagecount-1)*pp
i=0
while not rs.eof and i<pp
i=I+1
%>
<tr bgcolor="#FAFAFA">
<td height="22"><div align="center"><font color="#FF0000"><%= rs("userid") %></font></div></td>
<td><div align="center"><font color="#FF0000"><%= rs("log") %></font></div></td>
<td><div align="center"><font color="#FF0000"><%= rs("body") %></font></div></td>
<td><div align="center"><font color="#FF0000">¥<%= rs("je") %></font></div></td>
<td><div align="center"><font color="#000099"><%= rs("zje") %></font></div></td>
<td><div align="center"><font color="#FF0000"><%= rs("dat") %></font></div></td>
<td width="50"><div align="center"><a href="fee_detail.asp?w=del1&id=<%=rs("id")%>"><img src="image/4.jpg" width="16" height="16" border="0"></a></div></td>
</tr>
<% rs.movenext
wend
end if
rs.close %>
<tr bgcolor="#D9D9D9">
<td height="21" colspan="7"><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="46%">一共有:<%= count %> 条 一共:<%= totalpage %> 页 当前: <%= pagecount %> 页</td>
<td width="54%"><%
if totalpage>1 then
if totalpage-pagecount>0 then
%>
<a href="fee_all.asp?topage=<%=pagecount+1%>"><font color="#990000">下一页</font></a>
<%
end if
if pagecount<>1 and totalpage-pagecount>0 then
response.write "<font color=#FFFFFF>/</font>"
end if
if pagecount<>"1" then %>
<a href="fee_all.asp?topage=<%=pagecount-1%>"><font color="#990000">上一页</font></a>
<%
end if
end if
%></td>
</tr>
</table></td>
</tr>
<tr bgcolor="#D9D9D9">
<td height="21" colspan="7"><div align="center">
<% for ss=1 to totalpage %>
| <a href="fee_all.asp?topage=<%=ss%>"><font color="#990000"><%=ss%></font></a>
<% next %>
</div></td>
</tr>
</table>
<p align="center"> </p>
<p align="center"><a href="fee_detail.asp">返回财务日志查询 >></a></p>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -