[web2py] Re: BestWay to call controller function

2010-02-28 Thread mdipierro
redirect(URL()) does not call another controller. sends instructions to the client to call another controller action. If you really need to call another controller you can do what described here: http://web2py.com/book/default/section/4/19 But I'd recommend do not do it. Instead, encapsulate

[web2py] Re: BestWay to call controller function

2010-02-28 Thread winti
Thanks for that. i will use a module. Stefan On Feb 28, 4:45 pm, mdipierro mdipie...@cs.depaul.edu wrote: redirect(URL()) does not call another controller. sends instructions to the client to call another controller action. If you really need to call another controller you can do what