vote up 1 vote down star

How do I disable downlevel rendering of my ASP.NET 2.0 site?

I have a single master-page that all the other pages inherit from, and do not want "downlevel"-versions of the server-controls to be sendt to Google and W3C-validators. The best thing would be if this feature could be disabled for all users on all pages on my site.

flag

78% accept rate

3 Answers

vote up 2 vote down check

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

link|flag
This works great, thank you! – Espo Jan 19 '09 at 12:27
vote up 0 vote down

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.

link|flag
Thank you for your answer. I was trying to find a way to disable this autodetect-feature all together, the site will not be accessible to users without (X)HTML 4.01 anyway. – Espo Jan 19 '09 at 12:20
I personally go with the config file solution when I do use asp.net controls even though it's deprecated, because the whole instance level ClientTarget even on masterpages seems like pain. Global solutions ftw – annakata Jan 19 '09 at 12:49
vote up -1 vote down

While glancing over the SO frontpage, I read this question as "How do I disembowel..."

I think I need to take a deep breath and get off this bug for a while...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.