How to pass a parameter to a local html page in WP7 / WP8?
问题 Does anyone know how to pass a url parameter to a local page in the Web Browser Control? When you navigate to the page alone "/Html/MyPage.html" all is well but as soon as you add a parameter "/Html/MyPage.html?Message=Hello" I get an error page stating that we could not navigate to the page. Any ideas? 回答1: As another workaround you can pass your arguments as location hash parameter (if it is not used) browser.Navigate(new Uri("www/index.html#p=123&p2=567", UriKind.Relative)); and then in