可能重复:
使用查询字符串打开 html 文件
我正在使用 c# 编写一个简单的控制台应用程序,并且正在尝试使用“name”参数打开一个本地 html 文件。现在我正在使用 const url (用于测试...): "file:///D:/index.html?name=bob"
代码很简单:
class Program
{
static void Main(string[] args)
{
string link = @"file:///D:/index.html?name=bob";
Process.Start(link);
}
}
但它会打开带有链接的浏览器:“file:///D:/index.html”。有谁知道为什么它省略了“名称”参数以及如何修复它?
谢谢!