我正在从我的 C# 程序(使用 Microsoft Visual Studio 2008 版本 9.0.21022.8 RTM、Microsoft .NET FrameworkVersion 3.5 SP1 编写)中打开一个网站 www.odds.com.au,当网站打开时出现以下错误:

此页面上的脚本发生错误
线路:221
字符:3
错误:对象不支持此属性或方法
代码:0
网址:http://www.odds.com.au/javascripts/odds.js?1320019370
是否要继续在此页面上运行脚本?

我的 xaml.cs 代码是:

private void NavigateToUrl(string Url)
{

    wbMain.Navigate(new Uri("http://www.odds.com.au", UriKind.RelativeOrAbsolute));

}

我在互联网上搜索过,找不到明确的答案。如果有人可以提供帮助,将不胜感激。

谢谢

最佳答案

我认为错误在 javascript http://www.odds.com.au/javascripts/odds.js?1320019370 内。它与您的代码无关。但是,使用 Chrome 查看同一页面时,我没有看到此错误。您可能想要禁用脚本错误:

wbMain.ScriptErrorsSuppressed = true;

关于c# - 在我的 C# 程序中打开网页时出现 "An error has occured in the script on this page",我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8667176/

10-10 22:02