3

我正在尝试为 Ogame 做一个迷你机器人。

我运行我的WebBrowser类,它说它是 IE9 (WebBrowser.Version)。

当我执行这个:

wb.Navigate(www.ogame.com.us);

它说:

"Your browser is not up to date."

但是,当我在 Internet Explorer 上启动该页面时,它会显示该站点。IE9 是嵌入在带有.NET 框架 4.5的VisualStudio '12中的 WebBrowser吗?因为我不明白。有什么解决办法吗?


提前致谢。

4

1 回答 1

0

您的应用程序需要模拟不同版本的 IE。这是通过注册表完成的。

internal class Helper
{
    public static void SetBrowserEmulation(
        string programName, IE browserVersion)
    {
        if (string.IsNullOrEmpty(programName))
        {
            programName = AppDomain.CurrentDomain.FriendlyName;
            RegistryKey regKey = Registry.CurrentUser.OpenSubKey(
                "Software\\Microsoft\\Internet Explorer\\Main" + 
                "\\FeatureControl\\FEATURE_BROWSER_EMULATION", true);
            if (regKey != null)
            {
                try
                {
                    regKey.SetValue(programName, browserVersion, 
                        RegistryValueKind.DWord);
                }
                catch (Exception ex)
                {
                    throw new Exception("Error writing to the registry", ex);
                }
            }
            else
            {
                try
                {
                    regKey = Registry.CurrentUser.OpenSubKey("Software" + 
                        "\\Microsoft\\Internet Explorer\\Main" + 
                        "\\FeatureControl", true);
                    regKey.CreateSubKey("FEATURE_BROWSER_EMULATION");
                    regKey.SetValue(programName, browserVersion,
                        RegistryValueKind.DWord);
                }
                catch (Exception ex)
                {
                    throw new Exception("Error accessing the registry", ex);
                }
            }
        }
    }
}

internal enum IE
{
    IE7 = 7000,
    IE8 = 8000,
    IE8StandardsMode = 8888,
    IE9 = 9000,
    IE9StandardsMode = 9999,
    IE10 = 10000,
    IE10StandardsMode = 10001
}

调用此方法。

Helper.SetBrowserEmulation(AppDomain.CurrentDomain.FriendlyName, IE.IE10);

您需要重新启动程序。

于 2013-08-26T06:04:13.273 回答