Generally, you use GET when you're retrieving information from the server
and POST when you're sending information to the server (as when you're
submitting a form).

Django is designed so that, if you have GETs and POSTs for a form go to the
same URL, you can display the form on the GET branch and deal with the form
submission on the POST branch. If you then return an HttpResponseRedirect
after dealing with the submission, pressing back will not re-submit the POST
and you'll avoid lots of these problems.

In short, use GET as a default and only use POST when you're submitting a
form. (There are probably more subtle rules, but stick with these unless you
have a good reason to break them.)

Todd

On Jan 20, 2008 5:58 PM, Greg <[EMAIL PROTECTED]> wrote:

>
> Hello,
> I have a form submission where people can search by properties of my
> product (color, size, price, etc...).  We'll when they do a search a
> bunch of products are returned.  When they click on a product and then
> try to click on the back button.  In IE they receive an error:
> 'Webpage has expired'.  In looking around it seems that if I used a
> GET instead of a POST...my problem should be solved.  Does anybody
> have any experience with this problem?  Would there be any problems
> with using GET instead of POST?
>
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
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?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to