How do I disable downlevel rendering in ASP.NET?

╄→尐↘猪︶ㄣ 提交于 2019-12-01 08:56:32

There are a number of ways to do this.

At the page level (either declaratively or in code) you can use the ClientTarget property of the page:

ClientTarget="Uplevel" // Will force to IE6 capabilities.

Alternatively as Annakata's just posted, using a browser caps setting

There's a native component and some config possibilities for this.

Googling "browser capabilities" or "browsercaps" throws up some good links, but here's a couple of solid ones from MSDN.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!