在 WebBrowser 上加载网页显示空白页面

发布于 2024-12-13 07:46:25 字数 702 浏览 0 评论 0原文

我正在 Windows Phone 7 上构建一个 Web 应用程序,当我尝试在 WebBrowser 控制器上加载某个网页时,我得到的只是页面背景颜色,没有其他任何内容。其他页面加载得很好。

在设备 IE Brwoser 上,页面显示完全没有问题。

这是我的 XAML 代码:

<phone:WebBrowser IsScriptEnabled="True"
                  HorizontalAlignment="Stretch"
                  Margin="0,10,0,0"
                  Name="webBrowser"
                  VerticalAlignment="Stretch"
                  Height="Auto"
                  Width="Auto"
                  VerticalContentAlignment="Stretch"
                  HorizontalContentAlignment="Stretch"
                  ScriptNotify="webBrowser_ScriptNotify"
                  LoadCompleted="webBrowser_LoadCompleted"/>

谢谢。

I'm building a webapp on Windows Phone 7 and when i'm trying to load a certain webpage on the WebBrowser controller, all i get is the page background color and nothing else. Other pages are lodaed just fine.

On the device IE Brwoser the page showen with no problems at all.

Here is my XAML code:

<phone:WebBrowser IsScriptEnabled="True"
                  HorizontalAlignment="Stretch"
                  Margin="0,10,0,0"
                  Name="webBrowser"
                  VerticalAlignment="Stretch"
                  Height="Auto"
                  Width="Auto"
                  VerticalContentAlignment="Stretch"
                  HorizontalContentAlignment="Stretch"
                  ScriptNotify="webBrowser_ScriptNotify"
                  LoadCompleted="webBrowser_LoadCompleted"/>

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

痴意少年 2024-12-20 07:46:25

谢谢你们的帮助。

我明白了这一点。

  • Windows Phone 7.0 上的 WebBrowser 支持 Internet Explorer 7 技术。
  • Windows Phone 7.1 (7.5) 上的 WebBrowser 支持 Internet Explorer 9 技术。

我的项目是为 Windows Phone 7.0 构建的,网页上使用了 IE 7 不支持的一些 jQuery API。

这就是设备浏览器能够正确加载页面而 WebBrowser 控制器却无法正确加载的原因。

当我将项目更改为 7.1 时,问题就解决了。

Thanks for your help guys.

I figured this out.

  • WebBrowser on Windows Phone 7.0 is supporting Internet Explorer 7 technologies.
  • WebBrowser on Windows Phone 7.1 (7.5) is supporting Internet Explorer 9 technologies.

My project was built for Windows Phone 7.0 and on the web page were use of some jQuery API that IE 7 is not supporting.

This is the reason why the the device browser load properly the page and the WebBrowser controller didn't.

As soon as I changed the project to build for 7.1 the problem solved.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文