I have currently run into an issue updating an old Website that leverages an Infragistics Menu control in a UserControl throughout the site. The dropdown menus of the Infragistics control do not render correctly in IE9 unless the page is being rendered in Quirks mode. Quirks mode in IE9 is causing havoc with a large amount of javascript and other user controls.
Is it possible to have the UserControl that contains the Infragistics control render in a DOCTYPE that allows Quirks mode and then render the rest of the page in Strict?
I have looked at possibly using adaptercontrols to try to control this behavior but I have only found a way to control the overall page through the following link. http://wiki.visualwebgui.com/pages/index.php/ASP.NET_Wrapper_-_Custom_DOCTYPE_for_a_wrapped_control
This implementation controls the DOCTYPE for the entire page though and not a specific UserControl which is what I need.
Has anyone else ran into a situation where they needed portions of pages rendered in different DOCTYPEs?