Ignore my comment... I missed the context.

On Dec 4, 12:33 pm, Massimo Di Pierro <[email protected]>
wrote:
> what's wrong with?
>
> {{=URL(...,vars=dict(p1=param1,p2=param2))}}
>
> On Dec 4, 2:14 am, Jonathan Lundell <[email protected]> wrote:
>
>
>
>
>
>
>
> > On Dec 3, 2011, at 11:32 PM, Vineet wrote:
>
> > > @Anthony, thanks. Your method worked.
> > > Secondly, if I want to pass arguments by name, would it be okay to do
> > > something like this---->>
>
> > > {{=URL(...)}} + '/' + 'p1=' + param1 + '/' +  'p2=' + param2
>
> > Almost. You want:
>
> > {{=URL(...)}} + '?p1=' + param1 + '&p2=' + param2
>
> > ...then look for p1 & p2 in request.vars.

Reply via email to