Well, you could encode the information that is normally transferred in the cookie by adding a parameter to the URL all the time, so that your URLs are always something like:
/foo/bar/info?session_id=0873556323 BUT if anyone gets that URL they get that person's session. Which is a BAD thing. So don't do that. What precisely do you mean by 'track users session'? Just keep a log of where they are going on your site? You might be able to do that with a bit of URL fiddling since its not really security-related. The only other way I can think of to keep some state between web pages is to have a form with some hidden fields and make every request a POST. Eeeyuck. Barry --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---

