Is there no way to access the asp.net Response.Headers in 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 开发者_StackOverflow社区with IIS6?
Yes, there really is no way to read the headers in IIS6. You can only add them using .AddHeader()
or clear them using .ClearHeaders()
精彩评论