Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<%
While ((Repeat1__numRows <> 0) AND (NOT Recordset1.EOF))
%>
<%
strLink=Recordset1.Fields.Item("book_id").Value
%>
<a href="<%=strLink%>"><%=strLink%></a> <br>
<%
Repeat1__index=Repeat1__index+1
Repeat1__numRows=Repeat1__numRows-1
Recordset1.MoveNext()
Wend
%>
<%
While ((Repeat1__numRows <> 0) AND (NOT Recordset1.EOF))
%>
<%
strLink=Recordset1.Fields.Item("book_id").Value
%>
<a href="<%=strLink%>" target="_blank"><%=strLink%></a> <br>
<%
Repeat1__index=Repeat1__index+1
Repeat1__numRows=Repeat1__numRows-1
Recordset1.MoveNext()
Wend
%>