Microsoft Internet Security and Acceleration Server 2000 |
Points to the AddResponseHeaders function that adds a header to the HTTP response.
The AddResponseHeaders function is declared as:
BOOL WINAPI * AddResponseHeaders( PHTTP_FILTER_CONTEXT pfc, LPSTR lpszHeaders, LPSTR dwReserved );
header:value\r\n
AddResponseHeaders() can be used to add headers for clients before the server processes the request, but not during or after HTTP_FILTER_SEND_RESPONSE notification. If you need to add a header when the HTTP_FILTER_SEND_RESPONSE notification occurs, you can do so by using the AddHeader member of the HTTP_FILTER_SEND_RESPONSE structure.