mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
770 B
21 lines
770 B
<!--
|
|
The "next" button for sorted queries.
|
|
This retrieves the next page of documents for the query.
|
|
This is different from the unsorted version of "next" because that
|
|
ersion can't use the CiRecordsNextPage parameter for the text of
|
|
the button. This variable is only available for non-sequential queries.
|
|
-->
|
|
|
|
<%if CiContainsLastRecord eq 0%>
|
|
<td align=right>
|
|
<form action="/scripts/samples/search/simple.idq" method="get">
|
|
|
|
<%include /scripts/samples/search/hidden.htx%>
|
|
|
|
<input type="hidden" name="CiBookmarkSkipCount"
|
|
value="<%EscapeRAW CiMaxRecordsPerPage%>" >
|
|
|
|
<input type="submit" value="Next <%CiRecordsNextPage%> documents">
|
|
</form>
|
|
</td>
|
|
<%endif%>
|