Gossamer Forum
Home : Products : Gossamer Links : Discussions :

Command Pass-Through Tip

Quote Reply
Command Pass-Through Tip
Just though I'd pass this tip along. Have being messing around with URL command line tags, I've discovered you can pass through any tag you wish using <%custom_tag%> on the recipient page.

For example:

add.cgi?sub_id=1

then in add.html...

<%if sub_id eq '1'%>
... display something
<%elseif sub_id eq '2'%>
... display something else.
<%endif%>

So the benefits here are enormous and could save yourself from having a custom plugin or global do the same pass-through trick.

~ ERASER


Free JavaScripts @ Insight Eye

Last edited by:

Eraser: Aug 9, 2002, 12:28 PM
Quote Reply
Re: [Eraser] Command Pass-Through Tip In reply to
That's great. I just tried it, and it worked perfectly!

--FrankM