关于在asp.net 打开文件夹问题。
Process p = new Process();p.StartInfo.FileName ="E:\\gwb";
p.Start();
我是在ASP.NET 2.0 C# 做的,能打开某个文件夹,但是它不能显示在最前方,在任务栏下。怎能解决这个问题啊! --------------------编程问答-------------------- Process.Start("explorer.exe", "e:\\"); --------------------编程问答-------------------- 上面是什么意思。解释一下吧。
补充:.NET技术 , C#