On Apr 28, 2010, at 9:30 AM, annet wrote:

> In one of my functions I redirect the user to another function. I
> would like to notify the user that he has been redirect by setting a
> flash message, the problem is the args in the url. This is the
> function:
> 
> if
> request==URL(r=request,a='crm',c='clublocatormail',f='update_form'):
>        response.flash='message'
> 
> An example of request would be: 
> http://www.fitwise.nl/crm/clublocatormail/update_form/1/1
> 
> Is there a way to get rid of the args in the request? Right now the if
> will never be true.

(I *think*): just don't pass r=request to URL. Also, I think you want 
session.flash, not response.flash.

Reply via email to