views:

157

answers:

1

Dear programmers, please help me.. I used windows user control in asp.net website. it is running in IE7 but not in IE8 PLease sugeest me how to run my website in IE8 ???

I used code like that

<object  id="OperationsControl" classid="clock_control.dll#clock_control.UserControl1" >
</object>
A: 

According to the AskIE blog, .net user controls are not supported in IE8 in the Internet zone, which is why it isn't loading:

If you want to allow loading .NET controls for any web site that is impacted by this change, you can add it to the trusted sites zone. But please note that the site that needs to be added is that of the control and not that of the page.

The page linked aso contains further instructions on how to mitigate this issue.

Rob