I have a base page class where i set client target with
protected override void FrameworkInitialize()
{
base.FrameworkInitialize();
ClientTarget = "ie5";
}
for standart rendering for all browser. I now i need to change it to it's original state (auto?) for a single page that inherits my base page class.
How can i do it?
Thanks
UPDATE: I think i managed to do it with
HttpBrowserCapabilities bc = Request.Browser;
if (bc.SupportsXmlHttp == false)
{
Page.ClientTarget = "ie4";
}