I have a webpage that takes user's input from a form, and then once submitted displays a new ASP page that displays the results in the form of a table.
I am having big problems trying to allow a certain number of records in the table to be shown on any one page. For example, a query may return 100 results, but I want to view them as 10 per page.
Mt ASP page is called page2d.asp
I seem to be able to display my table so it only produces 10 results on the first page, and I have links at the bottom for the other pages.
e.g. <a href="page2d.asp&page=<%= I %>"><%= I %></a>
where 'I' is the page number.
However page 'page2d.asp&page=2' for example is not even found, and neither is any of the other pages. I feel I'm missing something fundamental here. Do I need to change something on my page2d.asp page to allow for these additional "page=2" (for e.g.) on the end of the URL? because it doesn't seem to find them.
Cheers for any help,
Alex.
I am having big problems trying to allow a certain number of records in the table to be shown on any one page. For example, a query may return 100 results, but I want to view them as 10 per page.
Mt ASP page is called page2d.asp
I seem to be able to display my table so it only produces 10 results on the first page, and I have links at the bottom for the other pages.
e.g. <a href="page2d.asp&page=<%= I %>"><%= I %></a>
where 'I' is the page number.
However page 'page2d.asp&page=2' for example is not even found, and neither is any of the other pages. I feel I'm missing something fundamental here. Do I need to change something on my page2d.asp page to allow for these additional "page=2" (for e.g.) on the end of the URL? because it doesn't seem to find them.
Cheers for any help,
Alex.