Guest_imported
New member
- Jan 1, 1970
- 0
Hi All,
I am working on an ASP auction site. I would like to create a page that pulls all the current information into a page as follows:
My database contains 3 tables:
Items - Item ID#, Item Name, Description, etc.
Bids - Item ID#, CurBid, BidTime, etc.
Users - userName, fName, lName, eMail, telephone, etc.
The page I want to create would display all the auction items, the current highest bid, bidtime, and the User who made the bid (along with any pertinent information pulled from the fields of the database tables.
What would be the best way to go about doing this?
I tried creating a recordset (rsItems) to list all items, and then another recordset inside of that to pull the info from the bids table and the users table (with a WHERE clause to make the connection between the bids table and the items table, and an INNER JOIN to connect the buyer and the userName between the other two tables).
If I'm not getting an EOF error, the page is displaying one record over and over and over until the script times out.
Help please!
Thanks!
I am working on an ASP auction site. I would like to create a page that pulls all the current information into a page as follows:
My database contains 3 tables:
Items - Item ID#, Item Name, Description, etc.
Bids - Item ID#, CurBid, BidTime, etc.
Users - userName, fName, lName, eMail, telephone, etc.
The page I want to create would display all the auction items, the current highest bid, bidtime, and the User who made the bid (along with any pertinent information pulled from the fields of the database tables.
What would be the best way to go about doing this?
I tried creating a recordset (rsItems) to list all items, and then another recordset inside of that to pull the info from the bids table and the users table (with a WHERE clause to make the connection between the bids table and the items table, and an INNER JOIN to connect the buyer and the userName between the other two tables).
If I'm not getting an EOF error, the page is displaying one record over and over and over until the script times out.
Help please!
Thanks!