-
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
-
If you set Response.Buffer = True, then you won't get the http headers already posted crap
-
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