任何人都可以帮助我如何传递参数和网址,将我重定向到网页。我有一个桌面应用程序。我有一个按钮,一旦点击按钮,我需要制定url和keyvalue对并调用网页。
我使用下面的代码通过URL传递参数,在Web浏览器上打开它,但我无法在浏览器上呈现页面。
string URI = "http://localhost:3457/HiddenPageToByPassLogin.aspx";
string myParameters = "param1=value1¶m2=value2¶m3=value3";
using (WebClient wc = new WebClient())
{
wc.Headers[HttpRequestHeader.ContentType] = "application/x-www-form- urlencoded";
string HtmlResult = wc.UploadString(URI,myParameters);
}
任何人都可以解释我为什么无法这样做吗? 任何帮助表示赞赏
答案 0 :(得分:1)
System.Diagnostics.Process.Start("http://google.com");
您也可以在查询字符串中传递数据
另一种方式
ProcessStartInfo startInfo = new ProcessStartInfo("iexplore.exe", "http://www.google.com/");
Process.Start(startInfo);
答案 1 :(得分:0)