PDA

Click to See Complete Forum and Search --> : Addentry


gsc1ugs
Feb 8th, 2001, 09:39 AM
Does anyone have a little asp script that lets you add to a database 1 or 2 fields will do, then show you they database contents you've just added..

I have a script that does just that but when i go to reload the page to view mode i get the http headers already posted crap... i'm baffled as to what i'm doing wrong.


Many thanks

Feb 9th, 2001, 07:16 AM
If you set Response.Buffer = True, then you won't get the http headers already posted crap

gsc1ugs
Feb 9th, 2001, 08:05 AM
Yep, i know... i had a little flag problem..

used in the end was for those interested..

Start: Response.buffer = true

end: Response.Clear
Response.Redirect("where ever")


Cheers all