|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
asp,你就只能等着微软给你解决,它不乐意你就只好悲催。而且asp跑在windows服务器上,windows服务器跟linux比起来简直弱爆了!分页|语句|源代码这个分页代码利用很复杂,只要4个步骤:
(1)机关SQL查询语句、设置数据库毗连字符串、设置每页纪录显现数量
(2)拔出分页把持代码<b>navigator_init.inc</b>文件
(3)在页面的得当中央(即你想显现“上页、下页”的中央),拔出分页导航代码<b>navigator.inc</b>
(4)用轮回显现本页纪录
<一>必要分页的ASP文件
sample.asp
<%
获得以后ASP页面的完全路径,主要技能
theScript=Request.ServerVariables("SCRIPT_NAME")
(1)机关SQL语句
myconnstr="driver={SQLServer};server=yourserver;uid=sa;pwd=;database=yourdatabase"
thePageSize=20每页显现的纪录数
uSQL="select*fromyourtablename"
(2)拔出分页把持代码
%>
<!--#includefile="../inc/control/navigator_init.inc"-->
<html>
<head>
<title>test</title>
<metahttp-equiv="Content-Type"content="text/html;charset=gb2312">
<linkrel="stylesheet"href="../default.CSS"type="text/css">
</head>
<!--你的HTML代码//-->
<tablewidth="100%"border="0"cellspacing="0"cellpadding="0">
<tr>
<td>
<!--(3)拔出分页导航代码-->
<!--#includefile="../inc/control/navigator.inc"-->
</td>
</tr>
</table>
<tablewidth="100%"border="0"cellspacing="0"cellpadding="0">
<tr>
<td>
<!--(4)用轮回显现本页纪录-->
<%Fori=1Tors.pagesize%>
<!--你的纪录显现代码//-->
<%
rs.MoveNext
Ifrs.EOFThen
ExitFor
rs.close
conn.close
EndIf
next
%>
</td>
</tr>
</table>
</body>
</html>
<二>分页把持代码:
navigator_init.inc
<%
theCurrentPageNum=clng(request("pn")</p>写软件都是想的时间比写的时间要长的.如果反过来了就得看看是什么原因了.另外大家可以回去问问公司里的小MM.(一般企业里,跟你们交付软件接触得最多的是她们) |
|