I am using django in the standard style:

if request.method == 'GET':
    do_something()
elif request.method == 'POST':
    get the form data
    validate it
    if fail validation show the errors else redirect to sucess page


Let's say the the form post fails caus of invalid data, and the errors
are displayed.

Now if u wanna start again...like go to the url and type enter i.e. a
GET request, u shud get the original page without the errors. to see
what i mean...try the lawrence.com site

Using IE go to

http://www.lawrence.com/accounts/login/

don't type in anything and so a submit. U get some form validation
errors which is kool.

Now go to the url and press the 'Enter' key. The same page appears
with old error messages.

This does not happen with Firefox.

The reason is that IE does not send in a GET header, it actually sends
in a POST for some reason...

lemme know if anyone figures this out

jim

--~--~---------~--~----~------------~-------~--~----~
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