How to disable level rendering in ASP.NET?

How do I disable the low level rendering of my ASP.NET 2.0 site?

I have one main page inherited by all other pages, and I don’t want the "downlevel" versions of the server controls to go to Google and the W3C validators. It would be best if this feature could be disabled for all users on all pages of my site.

+3
source share
2 answers

There are several ways to do this.

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

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

, Annakata,

+3

.

Google Browser " " "" , MSDN.

+1

All Articles