使用 JSF 覆盖 Internet Explorer Intranet 兼容模式
Microsoft Internet Explorer 切换到 Intranet 页面的兼容模式。我在此处找到了该问题的解决方案,但它适用于仅限 ASP.net Web 应用程序。然而,我开发了一个 JSF 应用程序,并希望实现相同的解决方法。
有没有专家知道在哪里放置相应的指令以及如何重新制定 ASP.net 设置指令?
Microsoft Internet Explorer switches to compability mode for intranet pages. I found a solution for the issue here, but it applies to an ASP.net web application only. I however develop a JSF application and would like to implement the same workaround.
Is there an expert who knows where to put the according directives and how to reformulate the ASP.net settings directives?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以轻松实现 servlet 过滤器来添加该标头,请参阅 此处获取教程,或此处获取一些现成的工具 代码。
You can easily implement a servlet filter to add that header, see here for a tutorial or here for some ready-to-use code.
这在这里得到了更清楚的解释和解决:
http://joensen.eu/2011/11/27/更改-ie-compatibility-in-jsf/
(过滤器的简单实现)
This is far more clearly explained and solved here:
http://joensen.eu/2011/11/27/change-ie-compatibility-in-jsf/
(easy implementation of a Filter)