⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 table_print.asp

📁 ASP数据库系统开发案例精选(光盘)中的客户关系管理系统 用户名/密码:admin/admin
💻 ASP
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file=DataBase/conn.asp-->

<%
sql=request("sql")
if request("sql")="" then
	sql=session("sql")
end if
session("sql")=sql
show=request("show")
set rs=server.CreateObject("adodb.recordset")
sql=session("sql")
rs.open sql,conn,1,1
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>

<style type="text/css">
<!--
.style1 {
	font-size: 16px;
	font-style: italic;
}
body,td,th {
	font-size: 12px;
}
.di {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #000000;
}
-->
</style>
</head>

<body>
<table width="649"  border="0" align="center">
  <tr>
    <td><span class="style1">客户报表</span> </td>
  </tr>
</table>
<table width="649"  border="0" align="center" cellspacing="0">
  <tr align="center">
    <td width="16%" height="37"  class="di"><strong>公司名称</strong></td>
    <td width="17%"  class="di"><strong>所在国家/地区</strong></td>
	<td width="12%"  class="di"><strong><strong>所在城市</strong></strong></td>
    <td width="20%"  class="di"><strong>公司电话</strong></td>
    <td width="18%"  class="di"><strong>公司传真</strong></td>
    <td width="17%"  class="di"><strong>E-mail</strong></td>
  </tr>
<%
if not rs.eof then
tol=rs.recordcount
rs.pagesize=show
maxpage=rs.pagecount
requestpage=clng(request("p"))
if requestpage="" or requestpage=0 then
	requestpage=1
end if
if requestpage>maxpage then
	requestpage=maxpage
end if
if requestpage<>1 then
	rs.move (requestpage-1)*rs.pagesize
end if
for i=1 to rs.pagesize and not rs.eof 
%>
  <tr align="center">
    <td height="30"><%=rs("ClientName")%></td>
    <td><%=rs("ClientCountry")%></td>
    <td><%=rs("ClientCity")%></td>
	    <td><%=rs("ClientTel")%></td>
    <td><%=rs("ClientFax")%></td>
    <td><%=rs("ClientEmail")%></td>
  </tr>
<%
	rs.movenext
	if rs.eof then exit for
next
else
	response.Write("<span class='style2'>没有找到相关信息</span>")
end if
%>
</table>

</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -