0

我有一个疑问,当我创建一个新进程iexplore并且这个进程打开一个页面时,我想知道页面是否正确加载。我如何知道页面加载是否失败?有没有办法从流程中捕获错误iexplore

我有这个演示代码,但不能正常工作

string navegador = "C:\\program files (x86)\\Internet Explorer\\iexplore.exe";
Process p = new Process();
p.StartInfo.FileName = navegador;
ProcessStartInfo processStartInfo = new ProcessStartInfo(navegador);
p.EnableRaisingEvents = false;
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.RedirectStandardError = true;
p.StartInfo.CreateNoWindow = true;
p.StartInfo = processStartInfo;
p.StartInfo.Arguments = "google.com";

p.Start();

Process currentProcess = Process.GetCurrentProcess();
Process[] localByName = Process.GetProcessesByName("iexplore");
Process[] localAll = Process.GetProcesses();


p.OutputDataReceived += new DataReceivedEventHandler(
                        prsProjectTypes_OutputDataReceived);
p.BeginOutputReadLine();

errorMessage = p.StandardError.ReadToEnd();
p.WaitForExit();

感谢您的任何帮助。

4

1 回答 1

1

假设您正在使用 WPF,您应该查看 Web 浏览器控件,而不是启动单独的进程。这将使您可以访问似乎是您正在寻找的LoadCompleted事件。

于 2013-05-03T19:44:06.713 回答