1樓:匿名使用者
那你就把第一條語句滯空不就好了 讓資料庫本身就從第二條開始
2樓:匿名使用者
set rs2=server.createobject("adodb.recordset")
sqltext2 ="select * from news order by id desc"
rs2.open sqltext2,conn,3,3
dim maxperpage
maxperpage=7
'取得頁數,並判斷使用者輸入的是否數字型別的資料,如不是將以第一頁顯示
dim text,checkpage
text="0123456789"
rs2.pagesize=maxperpage
for i=1 to len(request("page"))
checkpage=instr(1,text,mid(request("page"),i,1))
if checkpage=0 then
exit for
end if
next
if checkpage<>0 then
if not isempty(request("page")) then
currentpage=cint(request("page"))
if currentpage < 1 then currentpage = 1
if currentpage > rs2.pagecount then currentpage = rs2.pagecount
else
currentpage= 1
end if
if not rs2.eof then rs2.absolutepage = currentpage end if
else
currentpage=1
end if
%><%if row_count mod 1=0 then%>
<%end if %>
<%i=i+1
if i >= maxperpage then exit do
rs2.movenext
row_count=row_count+1
loop
end sub
end if
call list %>
<%if rs2.recordcount > maxperpage then %>
<%response.write "
"call showpages
%><%end if %>
<%sub showpages()%>
<%if currentpage > 1 then
response.write "首頁
>>"
response.write "前頁
>>"
else
response.write "首頁>>"
response.write "前頁>>"
end if
if currentpage < rs2.pagecount then
response.write "後頁
>>"
response.write "尾頁 "
else
response.write "後頁>>"
response.write "尾頁 "
end if
response.write " 頁次:" & "" & cstr(currentpage) & "" & "/" & cstr(rs2.
pagecount) & ""
response.write "" & cstr(maxperpage) & "" & "條/頁 " & " 共" & "" & cstr(rs2.recordcount) & "" & "條.
"response.write "
"%><%end sub%>
3樓:
top 20 好像是前20條資料把。。不是從第20條開始 access 資料庫我不知道。。我用的是sql
access資料庫怎麼建立刪除查詢
刪除sql語句 delete from 表名 where 條件語句刪除時一定要帶條件,否則就是清空被刪除表的所有資料,當然你需要那樣刪除的話除外.sql語句的delete語句是資料的刪除將刪除表的部分或全部記錄,刪除時可以指定刪除條件從而刪除一條或多條記錄。如果不指定刪除條件,delete語句將刪除...
資料庫連線語句,C 中連線資料庫的語句?
資料庫連線字串已經在配置檔案定義了,呵呵,實際應用和學校有點區別的。呃,你開啟configurationmanager,看看onlineshopconnectionstring就明白了。c 中連線資料庫的語句?c 資料庫連線 系統引用using using access資料庫需要。using sql...
access資料庫查詢中函式between的返回值是什麼
首先襲說明一下,access中沒有baibetween函式,在它支援的sql語句中有between語句,表示du介於a與b之間,可做 between a and b,用法如下zhi 舉個例子 假設dao需要查詢表中日期在starttime 和endtime之間的記錄,欄位名addtime,表名inf...