如果有get参数,Windows Phone 8 WebBrowser不会加载本地文件

时间:2013-11-15 16:53:01

标签: c# .net silverlight windows-phone-8

我正在尝试加载像这样的本地html文件

    WebBrouser = new WebBrowser();
    WebBrouser.Navigate(new Uri("index.html?param1=foo&param2=bar", UriKind.Relative);

它说无法找到该页面。如果我删除参数,它的工作原理。 如何将get参数传递给本地html文件?

1 个答案:

答案 0 :(得分:0)

使用#而不是?

示例:

browser.Navigate(new Uri("www/index.html#p=123&p2=567", UriKind.Relative));