Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Paging Results by Letter

Status
Not open for further replies.
With out being able to see their underlying code I could take a guess. You would basically use the one .asp page. Each link would pass the appropriate value in the query string ie. clicking 'A' will pass 'Value=A' in the querystring. When the asp page looks at this querystring and sees the value it bases its query on this value more than likely using something like this:

strSQL = "Select * From tblBands Where BandName Like '" & _
Request.Querystring("Value") & "%'"

Then they just loop through the recordset to populate the page.

Let me know if this makes sense and if you have any other questions.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top