MVC4添加标头以重定向响应不起作用

时间:2013-11-16 21:17:43

标签: c# asp.net .net asp.net-mvc asp.net-mvc-4

在调试以下代码时,我看到添加了标题:

System.Web.HttpContext.Current.Response.AppendHeader("Authorization", "Value");
System.Web.HttpContext.Current.Response.Redirect(redirectUrl);

但它在最终的HTTP请求中不存在。

1 个答案:

答案 0 :(得分:1)

重定向终止当前具有设置标头值的请求。

由于这是一个新请求,标题不存在。