Gossamer Forum
Home : Products : Gossamer Links : Discussions :

Dynamic Detailed Page

Quote Reply
Dynamic Detailed Page
Can someone show me how to build detailed page dynamically.
I tried as follow:
http://<%url%>/cgi-bin/page.cgi?g=Detailed/<%ID%>.html&d=1
But it didn't work and it return a blank page. I did have a "detailed.html". I'm using LinkSQL 2.03 now.
Thanks

Quote Reply
Re: Dynamic Detailed Page In reply to
It should be:

<a href="<%build_root_url%>/Detailed/<%ID%>.html">Detailed View!</a>

I'm not sure page.cgi is followed through to detailed but rather it goes to jump.cgi as in jump.cgi?Detailed=<%ID%>


- Eraser.
Quote Reply
Re: Dynamic Detailed Page In reply to
This is the easy way, simply change your link.html:
<ul><li><a class="link" href="<%db_cgi_url%>/jump.cgi?ID=<%ID%>"><%Title%></a>
To:
<ul><li><a class="link" href="<%detailed_url%>"><%Title%></a>

Note: <%ID%> is not required.

Quote Reply
Re: Dynamic Detailed Page In reply to
Take a look at my detailed_page plug in. It works for both static and dynamic pages, and survives upgrades.
It's available from the download plug ins page.


PUGDOGŪ Enterprises, Inc.
FAQ:http://LinkSQL.com/FAQ
Forum:http://LinkSQL.com/forum
Quote Reply
Re: Dynamic Detailed Page In reply to
It work now and fine. Thank you everybody.