Quote:
Originally Posted by EmilyLeeParsons
Hello, I have a database which I pull a list of id's, housingid's, addresses, area, details, etc..
I would like the user to be able to click on one row and have a page popup with even more information from the same database. I'm not sure how to select the one row that the user clicks on and how to write an asp page to pop up. Also do I make a SELECT statement based on the housingid column?
Any input would be of great help.
First just make a asp page that opens that information, you can worry about opening it as a popup later.
Yes, I would make the select statement based on the the housingid column, I would send the housing ID to the details page in the URL like this: <a href="details.asp?housingid=123" target="_new">
And the select statement might look like this:
- SELECT * FROM myTable WHERE housingid = " & request.querystring("housingid")
Does this help?
Jared