Opening of a xml document in internet explore
How can I open 开发者_运维问答the xml document in internet explore in c sharp dot net with winforms only
Try this. It works perfectly.
string strFileName = @"C:\File.xml";
Process proc = new Process();
proc.StartInfo.UseShellExecute = true;
proc.StartInfo.FileName = strFileName;
proc.Start();
精彩评论