Change default ASP MVC Request Header to add your own values

后端 未结 3 2040
太阳男子
太阳男子 2021-01-12 01:47

Im trying to change all my ASP MVC HTTP response headers to have another value by default for implementing Pingback auto-discovery in my blog application.

The defaul

3条回答
  •  悲&欢浪女
    2021-01-12 02:06

    I believe your problem may be simply that you are trying to modify the headers too late, since you're doing it in OnResultExecuted. Try overriding OnResultExecuting instead.

    http://msdn.microsoft.com/en-us/library/system.web.mvc.actionfilterattribute.onresultexecuting.aspx

提交回复
热议问题