Problem: I want to force legacy quirks mode on one of my asp.net pages for IE10. I have tried: <meta http-equiv="X-UA-Compatible" content="IE=5" />
in the head of my page. I have made sure its the first thing to appear after the head element. It does not accept the meta tag in IE10.
I would declare the quirks mode in the web.config file but I only want it for one page not the whole solution. Is there a way to specify it for one page in the web.config?
I have also tried declaring a doctype at the start of my page but that forces it into new quirks mode (source:Does the windows 8 internet explorer 10 still have quirksmode?) and not the legacy quirks mode.
My last, and very last option is to put the page in an iframe - but it would require a lot of work.
EDIT: Working environment - ASP.NET 4.0 IIS 7
Many Thanks