Hyperlinks to Database Results

J

Jon

I have a products page that I created using the Database
Results Wizard. Is there a way to hyperlink each
individual record in the page to its own page or do I
have to create a table and just keep updating it?
 
J

John Sitka

1.)have your product page generated by a stored procedure or access query
that accepts parameters.
2.)in the link to get their pass the parameters such that it was generated
dynamically

so products.asp would have a mess of these beside each product

<a href="viewaproduct.asp?productid=<%=rstObj("productid")%>"><img
border="0" src="images/magnify/magni2.gif" width="18" height="17"></a>

3.) then on viewproduct.asp page request product ID then a stored procedure
to retrieve the details.
 
T

Ted Ljong

Hi
I have done like this on my page:

In the db create a field for the hyperlink ex "productlink" and one field
for the hyperlinkword ex "read more about".
On the db result page right click on the "read more about" | hyperlink
properties | and insert
<%=FP_FieldLink(fp_rs,"productlink")%>
Ted Ljong
 

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