我正在尝试加载像这样的本地html文件
WebBrouser = new WebBrowser();
WebBrouser.Navigate(new Uri("index.html?param1=foo¶m2=bar", UriKind.Relative);
它说无法找到该页面。如果我删除参数,它的工作原理。 如何将get参数传递给本地html文件?
答案 0 :(得分:0)
使用#而不是?
示例:
browser.Navigate(new Uri("www/index.html#p=123&p2=567", UriKind.Relative));