bfieldmom
|
| Posted: 06/25/2002, 10:25 AM |
|
i currently have an artwork website and would like to use CC to access it. i have created a CC site that displays all the artwork, and i want to be able to click on one of the items and be brought to the current page for that specific item. it seems that i cannot create a single event, because each item that is clicked on will bring you to its own item's details.
how do i tell CC that i want to go to one of the detail pages when an item is clicked upon?
thanks!
eg:
if i click on picA, i want the URL to go to www.art.com/picA.html
if i click on picB, i want the URL to go to www.art.com/picB.html
etc.
|
|
|
 |
Nicole
|
| Posted: 06/27/2002, 1:17 AM |
|
Hello,
if field value really match the name of html page you can create link manually in Before Show event. E.g.:
asp
fldfield_name = "<a href = 'www.art.com/" & fldfield_name & ".html'>"&fldfield_name&"</a>"
Do not forget to select 'HTML' flag in field properties.
|
|
|
 |
|