views:

30

answers:

1

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?

A: 

Try to add headers using this method instead:

response.AddHeader("myHeader", "someValue");
Brendan
I don't want to add headers, I just want to read them after page load
Glenn Slaven