Re: POST data delay

2008-10-14 Thread david
On Oct 15, 11:42 am, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote: > On Tue, 2008-10-14 at 17:38 -0700, david wrote: > > Hi hope all is well.  Please tell me if this is related to Django. > > > Using Django 1.0 with Apache 2.2.9. > > > Have a very simple form by writing to the Httpresponse

Re: POST data delay

2008-10-14 Thread Malcolm Tredinnick
On Tue, 2008-10-14 at 17:38 -0700, david wrote: > Hi hope all is well. Please tell me if this is related to Django. > > Using Django 1.0 with Apache 2.2.9. > > Have a very simple form by writing to the Httpresponse directly. > > > r = HttpResponse() > r.write('') > r.write('First name: ') >

POST data delay

2008-10-14 Thread david
Hi hope all is well. Please tell me if this is related to Django. Using Django 1.0 with Apache 2.2.9. Have a very simple form by writing to the Httpresponse directly. r = HttpResponse() r.write('') r.write('First name: ') r.write('') r.write('') return r After the form is displayed on the