I am working on a records database and i need to know how to make a search where the user selects a number of results to display from a drop-down list.
Please supply a little more info. Do you need help with a SQL query? Syntax for getting values from a select list? How to create a paged view with a certain number of records? <p>nick bulka<br><a href=mailto: > </a><br><a href=
The database is SQL, and i need to create a view with a certain number of records displayed per page (say, first 20 on this page, next 20 on next page... etc.) <br><br>thanks.
how about<br><br>intResults = request.form("NumOfResults"<br>strSQL = "select top " & intResults & " * from table"<br><br>where NumOfResults is the drop down box in the previous form<br><br>If you are trying to view the results of a search X records at a time then there is a thread in the ASP forum that will benifit you " Onlys showing X records at a time"<br><br>Pat
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.