Carl
|
| Posted: 08/29/2002, 6:48 AM |
|
I have a db which has a field with urls (http://domain.com) and a field with
the site name (The Domain Name). I have bee able to add, update and delete
records.
My goal is that, using a search page, the result would link to the website
in the URL field as follows:
<a href="http://domain.com">The Domain Name</a>
I have managed to accomplish it seems that I have to include at least one
field from the search result generated by CCS.
<a href="{url_field}">{url_name_field}</a> seems to work until I delete the
field generated by the search results (url_field).
Is there a way to have the search result link directly to the URL and not
internally for editing the record?
Thanks
Carl
--
Web Hosting by Infotech Internet Services
Itis.net, Inc. - http://itis.net
|
|
|
 |
RonB
|
| Posted: 08/30/2002, 12:30 AM |
|
If you want something like that you could make a drop downmenu from a
listbox and have it react to the search.
RonB
"Carl" <herrecm@itis.net> schreef in bericht
news:akl8o1$2d7$1@news.codecharge.com...
> I have a db which has a field with urls (http://domain.com) and a field
with
> the site name (The Domain Name). I have bee able to add, update and
delete
> records.
>
> My goal is that, using a search page, the result would link to the website
> in the URL field as follows:
> <a href="http://domain.com">The Domain Name</a>
>
> I have managed to accomplish it seems that I have to include at least one
> field from the search result generated by CCS.
> <a href="{url_field}">{url_name_field}</a> seems to work until I delete
the
> field generated by the search results (url_field).
>
> Is there a way to have the search result link directly to the URL and not
> internally for editing the record?
>
> Thanks
> Carl
>
> --
> Web Hosting by Infotech Internet Services
> Itis.net, Inc. - http://itis.net
>
>
|
|
|
 |
Carl
|
| Posted: 08/30/2002, 6:58 AM |
|
I'm not sure how to do that nor that it would give the feel I want. I have
this working in cold fusion and with a FrontPage database result. I was
trying to compare how easy / hard it was to do with CodeCharge. So far
ColdFusion has proven to be the most flexible for this particular task.
The goal is to list various links to other websites according to the letter
of the alphabet the user has chosen. The links are in the db I can enter
the URL in the db with or without the <a></a> tag so whichever way it works
is fine.
Thanks Again.
Carl
The list should look like hyper links not a drop down box.
"RonB" <r.borkent@123chello.456nl> wrote in message
news:akn6vg$jin$1@news.codecharge.com...
> If you want something like that you could make a drop downmenu from a
> listbox and have it react to the search.
>
> RonB
|
|
|
 |
Carl
|
| Posted: 09/01/2002, 6:33 AM |
|
OK, I figured this one out. If the data contains the <a></a> tag as part of
the field, just set properties / data / content to HTML and it will display
the field as a link to the correct site.
Thanks all.
Carl
"Carl" <herrecm@itis.net> wrote in message
news:akl8o1$2d7$1@news.codecharge.com...
> I have a db which has a field with urls (http://domain.com) and a field
with
> the site name (The Domain Name). I have bee able to add, update and
delete
> records.
>
> My goal is that, using a search page, the result would link to the website
> in the URL field as follows:
> <a href="http://domain.com">The Domain Name</a>
>
> I have managed to accomplish it seems that I have to include at least one
> field from the search result generated by CCS.
> <a href="{url_field}">{url_name_field}</a> seems to work until I delete
the
> field generated by the search results (url_field).
>
> Is there a way to have the search result link directly to the URL and not
> internally for editing the record?
>
> Thanks
> Carl
>
> --
> Web Hosting by Infotech Internet Services
> Itis.net, Inc. - http://itis.net
>
>
|
|
|
 |
|