求教
private void button2_Click(object sender, EventArgs e)
{
OpenFileDialog openFile=new OpenFileDialog();
openFile.Filter = "*.doc;|*.exe";
if (openFile.ShowDialog() == DialogResult.OK)
{
if (openFile.FileName != "")
{
this.textBox1.Text = openFile.FileName;
}
}
}
private void button1_Click(object sender, EventArgs e)
{
Process p = Process.Start(textBox1.Text,"113.108.95.18");
}
表达式Process p = Process.Start(textBox1.Text,"113.108.95.18");
可以运行程序 但为什么就是链接不到网络?