hello,

I store request.GET in session:

request.session['query_string'] = request.GET

then I retrieve the value in another page and try to urlencode the
QueryDict:

context['query_string'] = request.session['query_string'].urlencode()

in my context I get the python's string representation of the
QueryDict object instead of the expected key0=value0&key1=value1&...
string.

If, instead of QueryDict, I store the urlencoded string in the
session, everything works of course:

request.session['query_string'] = request.GET.urlencode()

a bug?

thanks

konstantin

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to