I'll try to be as short as possible.
Using vbScript to run a query of a Stored Procedure (query) in Access. Selecting all records which fit criteria (about 5 parameters), then listing all results in a table in HTML.
Here's the deal. There are about 10 fields to each record but I'm only showing 4 in the table. I want the user to be able to click on a "details" link (in the table next to each record) which then passes all 10 fields for that record to a new page.
I want to know the "most efficient" way to do this. Right now, I'm passing the information through the hyperlink "details" using "...details.asp?City=<%Showset("City"%>&Phone=<%Showset("Phone"%>...etc."
Something tells me this isn't the best way to do it. I want to close my connection as soon as I've queried the data, but would like to bounce back and forth between the list and details pages. Would using GETSTRING, then parsing it out be better? Or should I just requery the recordset on the new page selecting only one record?
Design Confused...
Using vbScript to run a query of a Stored Procedure (query) in Access. Selecting all records which fit criteria (about 5 parameters), then listing all results in a table in HTML.
Here's the deal. There are about 10 fields to each record but I'm only showing 4 in the table. I want the user to be able to click on a "details" link (in the table next to each record) which then passes all 10 fields for that record to a new page.
I want to know the "most efficient" way to do this. Right now, I'm passing the information through the hyperlink "details" using "...details.asp?City=<%Showset("City"%>&Phone=<%Showset("Phone"%>...etc."
Something tells me this isn't the best way to do it. I want to close my connection as soon as I've queried the data, but would like to bounce back and forth between the list and details pages. Would using GETSTRING, then parsing it out be better? Or should I just requery the recordset on the new page selecting only one record?
Design Confused...