开发者

Detect that asp.net http headers already sent

I am adding headers to a page as follows: Page.Response.AddHeader("foo", "bar");

Depending upon previous processing, sometimes this fails with "Server cannot append header after HTTP headers have been sent." I am dealing with this by enclosing Page.Respons开发者_如何转开发e.AddHeader("foo", "bar"); within a try-catch construct. However, to keep things cleaner and avoid generating an exception is there any way to detect that the headers have already been sent? (btw if I try evaluating Page.Response.Headers then I get the following error: "This operation requires IIS integrated pipeline mode")

Thanks


As of .NET 4.5.2, you can do this using the now-public HeadersWritten property of HttpResponse (see the msdn docs):

if (HttpContext.Current.Response.HeadersWritten) { ... }


You can use an HttpModule to register for the PreSendRequestHeaders event. When it gets called, write a value to HttpContext.Current.Items indicating that the headers are being sent – and then everywhere else in your code you check the value in HttpContext.Current.Items to see if its been sent yet.


UPDATE: the HeadersWritten property is now available on the HttpResponse object.

Unfortunately, whilst the HttpResponse object has a property called HeadersWritten, and a backing field called _headersWritten, neither of these are accessible from outside of the System.Web assembly - unless you use Reflection. I'm not clear what you think you'll be able to obtain from the Headers collection, it may or may not exist, independently of whether the headers have been sent yet.

If you want to use Reflection, it may have it's own performance penalties, and it will require your application to run in full trust.

All of the publicly accessible methods on HttpResponse that involve the _headersWritten field seem to use it to throw an exception.


Trying setting buffer to false:

http://msdn.microsoft.com/en-us/library/950xf363.aspx

This will alleviate your first problem but your perfromance and user experience can suffer. Also "This operation requires IIS integrated pipeline mode" is related to non-IIS 7 server processing that line of code. You can find more info on it here:

http://forums.asp.net/p/1253457/2323117.aspx

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜