C# 4.0 在internet Explorer中打开xml文档

C# 4.0 在internet Explorer中打开xml文档,c#-4.0,C# 4.0,如何在internet中打开xml文档仅使用winforms在c sharp dot net中进行探索。它工作得很好 string strFileName = @"C:\File.xml"; Process proc = new Process(); proc.StartInfo.UseShellExecute = true; proc.StartInfo.FileName = strFileName; proc.Start(); 您的意思是您在internet explorer中有一个xml

如何在internet中打开xml文档仅使用winforms在c sharp dot net中进行探索。它工作得很好

string strFileName = @"C:\File.xml";
Process proc = new Process();
proc.StartInfo.UseShellExecute = true;
proc.StartInfo.FileName = strFileName;
proc.Start();

您的意思是您在internet explorer中有一个xml文档要阅读,还是您有一个xml文档要在IE中打开?是的,先生,我想打开xml文档,它存储在字符串变量中,我想通过c#代码在IE中打开。