This topic is locked

Records per Page

2/11/2005 10:24:18 AM
ASPRunnerPro General questions
T
troyo author

Is there a way to add to the Records per page drop down so that we could display more than 500 records per page? If possible, I would like to be able to add 750 and 1000.
Troy

Sergey Kornilov admin 2/11/2005

Troy,
you can modify list.asp file in Template Editor for this purpose. See my changes in bold:

<OPTION value=100 <%if session("pagesize")=100 then Response.Write " selected"%>>100

<OPTION value=500 <%if session("pagesize")=500 then Response.Write " selected"%>>500

<OPTION value=750 <%if session("pagesize")=100 then Response.Write " selected"%>>750

<OPTION value=1000 <%if session("pagesize")=500 then Response.Write " selected"%>>1000