[EMAIL PROTECTED] wrote:
Hi,
I have a component, and inside component I am calling another component like this Component1:
------------------
<a href="/component2?arg1=[+ $fdat{arg1} +];arg2=[+ $fdat{arg2} +];arg3=[+ $fdat{arg3} +].....>SomeData</a>
The problem is I have many arguments to pass and I have a long navigation path. Is there any way in embperl to send
these arguments (or form data) of component1 to component2 or reference them in component2 without specifying them in the href tag. I appreciate your help.


Thanks,
Sreeram

As long as the total lenght doesn't exceed the maximum allowed URL length you could try this:


<a href="/component2?[+ \%fdat +]>SomeData</a>

If you don't want it in the href at all I guess you have to put it in $udat or similar.

--
Christian

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to