Hi,
I have a simple webpage containing a .NET usercontrol embedded using the OBJECT tag. In IE7, the page displays and I can use the usercontrol.
However, in IE8, the usercontrol does not even load.
Any thoughts / ideas?
Hi,
I have a simple webpage containing a .NET usercontrol embedded using the OBJECT tag. In IE7, the page displays and I can use the usercontrol.
However, in IE8, the usercontrol does not even load.
Any thoughts / ideas?
I don't know the solution to the problem but at least until someone can offer a better answer you can put:
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
right below the title tag in the head of your page. This will force the page to render in IE7 and should show the usercontrol again.
This is a change in IE8 due to a vulnerability in assembly loading. See this post for more details.
The control will load if the site is added to the Trusted Sites list. There is no way to do that from the web, so the users have to do it themselves or you can provide some kind of installer which does it. (See msdn.microsoft.com/en-us/library/ms537181(VS.85).aspx )
Compatibility mode or the X-UA-Compatible meta tag has no effect.