我有这个代码从richtextbox打开多个网址,它工作正常,但问题是它在不同的浏览器中打开所有网站。
private void button1_Click(object sender, EventArgs e)
{
for(int i = 0 ; i < richTextBox1.Lines.Length ; i++ )
{
Process.Start("http://" + richTextBox1.Lines[i]);
}
}
如何在同一浏览器中打开像标签这样的页面?
答案 0 :(得分:1)
这对我有用......
private void button1_Click(object sender, EventArgs e)
{
foreach (string item in richTextBox1.Lines)
{
if (!string.IsNullOrEmpty(item))
{
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.FileName = "firefox.exe";
startInfo.Arguments = "-new-tab " + item;
Process.Start(startInfo);
}
}
}
答案 1 :(得分:0)