I'm working an asp page to record attendee information for a seminar. My first page (lookup.asp) allows the user to search for a company based on company name, city or company number. The results (list.asp) shows all companies matching the search (this comes from a connection to companytable). From these results I need to create a link from the company name and send a querystring of the customer number. The issue I am having is with the next page, attendee.asp, which is supposed to list the attendees matching the company from the querystring. The issue is that I open a second connection to pull the information out of attendees. How do I get around this?