Hi,
你可以尝试修改注册表,把自己的网站加到兼容性视图列表:
using (RegistryKey key = Registry.CurrentUser.OpenSubKey(keyPath, true))
{
if (key != null)
key.SetValue(keyName, newValue, RegistryValueKind.DWord);
}
For more information, you can refer here
http://stackoverflow.com/questions/19770933/how-can-i-programmatically-add-website-to-compatibility-list-internet-explorer-1
http://stackoverflow.com/questions/16722454/editing-binary-registry-key
HOpe it can help you.
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place. <br/> Click <a
href="http://support.microsoft.com/common/survey.aspx?showpage=1&scid=sw%3Ben%3B3559&theme=tech"> HERE</a> to participate the survey.