| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 386 人关注过本帖
标题:注释一段ASP代码
取消只看楼主 加入收藏
guimou
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2009-9-15
结帖率:100%
收藏
已结贴  问题点数:20 回复次数:1 
注释一段ASP代码
<%
  id2=request("id1")
  page=request.querystring("page")
  if page="" then page=1
  if not(isnumeric(page)) then page=1
  if page<1 then page=1
  page=int(page)
  set rs=server.createobject("adodb.recordset")
  sql="select * from news where cstr(sort)='"+id2+"' order by id desc"
  rs.open sql,conn,3,3
  if rs.eof then
      response.write "暂且没有该类新闻"
      response.end
  else
      rs.pagesize=20
      totalrec=rs.recordcount
      totalpage=rs.pagecount
      if page>totalpage then page=totalpage
      rs.absolutepage=page
      i=0
      dim id(),title(),filename()
      do while not rs.eof and (i<rs.pagesize)
      i=i+1
      redim preserve id(i),title(i),filename(i)
      id(i)=rs("id")
      title(i)=rs("title")
      filename(i)=rs("filename")
      rs.movenext
      loop
  end if
  rs.close
  %>
搜索更多相关主题的帖子: 代码 注释 ASP 
2009-09-15 21:42
guimou
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2009-9-15
收藏
得分:0 
非常感谢
2009-09-15 23:07
快速回复:注释一段ASP代码
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.016932 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved