Wiktor Grębla napisał(a): > I was wondering, is there any way to set a cookie valid for the > current session only, without setting global > SESSION_EXPIRE_AT_BROWSER_CLOSE? I should RTFM more (BTW, thanks for the great documentation): #v+ from django.contrib.sessions.models import Session
response = HttpResponseRedirect('/main/') if not request.COOKIES.has_key('nuqkie'): skey = Session.objects.get_new_session_key() response.set_cookie('nuqkie', skey, max_age=None) return response # we need session id # and it shows after reloading ecname = request.COOKIES['nuqkie'] + '_entries' icname = request.COOKIES['nuqkie'] + '_images' #v- No need to set SESSION_EXPIRE_AT_BROWSER_CLOSE. Everyday I like Django more. I only need to stop replying to my own e-mails :). Cheers, W. -- Talkers are no good doers. http://greblus.go.pl --~--~---------~--~----~------------~-------~--~----~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---