後台執行cmd。exe,來調用beyond Compare,但是每次都會打開新網頁
還有想在後台將生成的report。htm打開,用frame,結果只得到2個白框,
Process p = new Process();
p.StartInfo.FileName = @"cmd.exe";
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardInput = true;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.RedirectStandardError = true;
p.StartInfo.CreateNoWindow = true;
p.Start();
string str = "D:\\BCompare\\BCompare.exe @D:\\parser\\BCconsle.txt D:\\parser\\o.txt D:\\parser\\s.txt D:\\parser\\report.html ";
p.StandardInput.WriteLine(str);
p.StandardInput.WriteLine();
p.StandardInput.AutoFlush = true;
p.StandardInput.WriteLine("exit");
p.StandardOutput.ReadToEnd();
p.Close();
Response.Write("<a href=' D:\\parser\\report.html'></a>");
// Response.Write("<frameset cols='25%,50%,25%'><frame src='D:\\parser\\report.html' /></frameset>");
那是因為你的服務器和客戶機對於調試來講是一台電腦。你真的發布下就知道了,根本沒用的程序。