>
> both
>
> <h3><a href="{{=URL('action')}}/param1/param2">....</a></h3> 
>
> and
>
> <h3><a href={{=URL('action')}}/param1/param2>....</a></h3> 
>
>
> are not working ( they are not showing the values of param1 and param2 )
>

You are simply putting the literal strings "param1" and "param2" directly 
into your HTML there, so of course the values of those variables won't be 
shown. What are param1 and param2? Are they Javascript variables? If so, 
where are they defined? If they are Javascript variables, then you have to 
use Javascript to build the URL -- you cannot just paste Javascript 
variables directly into HTML and have the browser translate them into their 
values.

Anthony

Reply via email to