Passing Variables...

  • Thread starter Thread starter 116
  • Start date Start date
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
 
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
 
Back
Top