开发者

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();
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜