Click to See Complete Forum and Search --> : WHat is "http headers"?


gilgalbiblewhee
09-13-2005, 12:32 AM
The redirect page is giving error.
UPDATE insertanswer SET passages = "God created" WHERE [id] = 1;
UPDATE insertanswer SET passages = "there be ligh" WHERE [id] = 3;

Response object error 'ASP 0156 : 80004005'

Header Error

/wheelofgod/pageing4.asp, line 76

The HTTP headers are already written to the client browser. Any HTTP header modifications must be made before writing page content.

buntine
09-13-2005, 03:50 AM
Try sticking Response.Buffer = True at the top of the file.

HTTP Headers are a collection of information the server sends to the client during a request. They contain information about the data, the server, and the client.

Regards.