string stdFile = “001.txt”;
       string path1= HttpContext.Current.Server.MapPath("test/" + stdFile.ToString());
        string Porjectpath = AppDomain.CurrentDomain.SetupInformation.ApplicationBase;//获取或设置包含该应用程序的目录的名称。
        string path = Porjectpath + "test\\" +stdFile;
        System.IO.FileInfo fie = new FileInfo(path);
         if (fie.Exists)
         {
             String file = path;
             FileInfo info = new FileInfo(file);
             Process p = new Process();
             p.StartInfo.FileName = file;
             p.StartInfo.WorkingDirectory = info.DirectoryName;
             p.Start();
            // System.Diagnostics.Process.Start(path1);
         }为什么在我自己的电脑上面可以打开文件   放到服务器上面 这程序就不能打开文件 疑问 没搞懂  请教 请教