删除仅在Iframe中自动添加的X-Frame-Options

时间:2017-02-24 14:06:51

标签: asp.net iframe x-frame-options

因此,我们将此应用程序在Iframe中打开,但X-Frame-Options阻止它。我希望它从httpheader中完全删除。我知道可以通过执行以下操作来阻止它:

  

MVC 5自动添加一个X-Frame-Options标题,所以转到你的Global.asax文件并将其添加到Application_Start()方法:

System.Web.Helpers.AntiForgeryConfig.SuppressXFrameOptionsHeader = true;

但我的Global.asax看起来与众不同,我似乎无法以某种方式让它发挥作用。它看起来像这样:

<%@ Application Codebehind="Global.asax.cs" Inherits="ApplicationWebInterface.MvcApplication" Language="C#" %>

有任何解决此问题的想法吗?

1 个答案:

答案 0 :(得分:0)

你必须将它添加到Global.asax.cs而不是Global.asax。