錨點是“top”,可以放在頁面的任何位置,一般是頁首。程序紅色部分是關鍵,就是對錨點出現(xiàn)的判斷,我設置的數(shù)值是4,意思是出現(xiàn)4個動態(tài)數(shù)據(jù)就出現(xiàn)一個錨點,少于4個時因為還在同一個頁面,就不需要有錨點出現(xiàn),這個數(shù)值可以根據(jù)實際情況進行修改。為了對頁面進行進行美化,可以把錨點的文字用圖形替換把top替換成img src=top.gif>。
a name="top">/a>
…...(具體內(nèi)容省略)
%
While ((Repeat2__numRows > 0) AND (NOT rsp.EOF))
%>
…...(具體內(nèi)容省略)
%
Repeat2__index=Repeat2__index+1
Repeat2__numRows=Repeat2__numRows-1
if Repeat2__numRows 4 then
Response.Write("table width=400 border=0 cellpadding=0 cellspacing=1>tr>td align=right>a href=#top>top/a>/td>/tr>/table>")
else
Response.Write("table width=400 border=0 cellpadding=0 cellspacing=1>tr>td align=right>a/td>/tr>/table>")
end if
rsp.MoveNext()
Wend
%>
|