Re: [web2py] Re: Help with Argument list in redirection

2010-01-14 Thread Thadeus Burgess
> ahhh! AH! -Thadeus On Thu, Jan 14, 2010 at 8:16 AM, mdipierro wrote: > ahhh! > > redirect(URL(request.application, 'default', 'searchpurchaseresults', > vars=dict(page=0,orderpref='None',agent=form.vars.agent, > fsource=form.vars.fsource,

[web2py] Re: Help with Argument list in redirection

2010-01-14 Thread mdipierro
ahhh! redirect(URL(request.application, 'default', 'searchpurchaseresults', vars=dict(page=0,orderpref='None',agent=form.vars.agent, fsource=form.vars.fsource, fromdate=form.vars.fromdate, to=form.vars.to))) >

[web2py] Re: Help with Argument list in redirection

2010-01-14 Thread vvk
Solved it using this: arglist = "page = 0" + "&orderpref=" + "None" + "&agent=" + str (form.vars.agent) + \ "&fsource=" + str(form.vars.fsource) + "&fromdate=" + str (form.vars.fromdate) + "&to=" + str(form.vars.to) redirect(URL(request.application, 'defaul