
|
email this FAQ to a colleague
Q:
I'm receiving the following error message:
Response object error 'ASP 0156' Header Error
/intranet_devel/scripts/CheckLog.asp, line 14
The HTTP headers are already written to the client
browser. Any HTTP header modifications must be made
before writing page content.
Does anyone know what is causing this error?
A:
This problem occurs when you output HTML before you change the Response Headers. For example changing the response header could consist of:
Response.Buffer=True
This is a restriction of the HTTP protocol.
- Wayne Berry
|