Passing Variables...

1

116

I have a results page which shows all records. I have added a link in an
empty column that when clicked will send just this record to another page
with a results section on it on displaying that record. Any assist would be
appreciated.

Thanks
David
 
S

Stefan B Rusynko

Add the record ID (whatever unique key, preferably a numeric auto record number, you have for each record) to the link as a
parameter
<a href="linkpage.asp?i=<%=ID%">view record</a>
Then on the receiving page query the DB for that record
See http://www.spiderwebwoman.com/thingumajig/tweaks.htm#passing



--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
_____________________________________________


I have a results page which shows all records. I have added a link in an
empty column that when clicked will send just this record to another page
with a results section on it on displaying that record. Any assist would be
appreciated.

Thanks
David
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top