c# 4.0 - Opening of a xml document in internet explore -


how can open xml document in internet explore in c sharp dot net winforms only

try this. works perfectly.

string strfilename = @"c:\file.xml"; process proc = new process(); proc.startinfo.useshellexecute = true; proc.startinfo.filename = strfilename; proc.start(); 

Comments

Popular posts from this blog

linux - Mailx and Gmail nss config dir -

c# - Is it possible to remove an existing registration from Autofac container builder? -

php - Mysql PK and FK char(36) vs int(10) -