我尝试删除Http标头X-AspNetMvc-Version
。我在Global.asax
中添加了这个:
void Application_Start(object sender, EventArgs e)
{
MvcHandler.DisableMvcResponseHeader = true;
}
但它不起作用。在Firefox中,我可以看到X-AspNetMvc-Version: "5.1"
。
我做错了什么?
答案 0 :(得分:0)
检查IIS中的HTTP响应标头中是否配置了任何内容。
答案 1 :(得分:0)
您可能需要将其添加到Global.asax.cs中:
MvcHandler.DisableMvcResponseHeader = true;