My application has a search form: it self submit to whatever page it is in 
and redirects to search function.
I took vars from search form (like, term = request.args(0)) and redirect as 
redirect (c='..', f='..', args=[v])

Now, in result of search form I get underscores(_) if search term include a 
space.
(eg.,'top parts' displayed as 'top_parts') I want the space to retain

also if term contains a apostrophe I get invalid request page. (eg., I'm ) 

Former one can be overcome by manually replacing underscore with space.
But what to do about later one?

Reply via email to