HttpResponseRedirect question

Posted by Hulk on Stack Overflow See other posts from Stack Overflow or by Hulk
Published on 2010-04-05T07:13:26Z Indexed on 2010/04/05 7:23 UTC
Read the original article Hit count: 183

Filed under:
|
|

Cant we send a dictionary variable when using HttpResponseRedirect

        render_to_response('edited/display.html',context_instance=RequestContext(request,{'newlist': newlist}))

    //How can the dictionary and the request sent back again

    //sumthing like this

    return HttpResponseRedirect('edited/display.html',context_instance=RequestContext(request,{'newlist': newlist}))

© Stack Overflow or respective owner

Related posts about django

Related posts about django-views