When I try to access Request.Headers
I get a "This operation requires IIS integrated pipeline mode." error.
Is there really no way to view the response headers in .net with IIS6?
When I try to access Request.Headers
I get a "This operation requires IIS integrated pipeline mode." error.
Is there really no way to view the response headers in .net with IIS6?
Try to add headers using this method instead:
response.AddHeader("myHeader", "someValue");