There should be no problem with the anchor point of static pages. Today I encountered a problem with the anchor point of dynamic data display pages. I studied it and shared it with everyone.
The anchor point is "top" and can be placed anywhere on the page, usually at the top of the page. The red part of the program is the key, which is to judge the appearance of the anchor point. The value I set is 4, which means that an anchor point will appear when 4 dynamic data appear. If there are less than 4, because it is still on the same page, there is no need to have one. The anchor point appears, and this value can be modified according to the actual situation. In order to beautify the page, you can replace the anchor text with graphics and replace top with <img src=top.gif>.
<a name="top"></a>
...(specific content omitted)
<%
While ((Repeat2__numRows <> 0) AND (NOT rsp.EOF))
%>
...(specific content omitted)
<%
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
%>