HttpCachePolicy SetETag

2019-08-30 18:52发布

http://msdn.microsoft.com/en-us/library/system.web.httpcachepolicy.setetag.aspx

Is there a way to check for is the ETag is already set? I Keep getting the exception

The ETag header has already been set

But i can figure out how to check for it

1条回答
聊天终结者
2楼-- · 2019-08-30 19:23

You can check the response headers for it. For example in a ActionResult

    public override void ExecuteResult(ControllerContext context)
    {
        if (_etag != null && context.HttpContext.Response.Headers["ETag"] == null)
        {
            context.HttpContext.Response.AddHeader("ETag", _etag);
        }
    }
查看更多
登录 后发表回答