Django Version: 4248
OS: Windows XP Pro
FF: 2.0.0.1
IE: 6.0

I'm seeing a weird behavior with a very basic form, I was hoping some
additional eyes might help.

This example exhibits the strange behavior:

I have an HTML page with the following form:

<form action="/redirect/" method="post">
 <input type="text" name="foo" />
 <input type="submit" value="Redirect" />
</form>

And the following in views.py:

def redirect(request):
   return HttpResponseRedirect('/tools/')
   # set '/tools/' to any working URL in your app


Clicking on the form submit button in IE will correctly forward to the
/tools/ page.  Clicking on the button in Firefox (v2.0.0.1) yields a
page error, "The connection to the server was reset while the page was
loading."

If I remove the <input type="text" name="foo" /> line from the form,
Firefox will forward correctly.  That's the weirdness.

Any ideas?  I fully expect this to be a local environment thing, but I
thought I'd throw it out there in case anyone has seen it or has some
pointers on what I could do to shed some light on the problem.  Thanks
for your help...

Doug Van Horn


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