如何在 asp.net 中启用 X Frame 选项
How can i enable X Frame options in asp.net
<httpProtocol>
<customHeaders>
<add name="X-Frame-Options" value="ALLOW" />
</customHeaders>
</httpProtocol>
我已将其添加到 web.config 文件中,并希望允许来自 https://preview.codecanyon.net/
的 x 帧站点
您可以试试下面的方法。此外,您可以检查
here了解更多详情。
<add name="X-Frame-Options" value="ALLOW-FROM http://xxx.xx" />
<httpProtocol>
<customHeaders>
<add name="X-Frame-Options" value="ALLOW" />
</customHeaders>
</httpProtocol>
我已将其添加到 web.config 文件中,并希望允许来自 https://preview.codecanyon.net/
的 x 帧站点您可以试试下面的方法。此外,您可以检查 here了解更多详情。
<add name="X-Frame-Options" value="ALLOW-FROM http://xxx.xx" />