Xml1.Visible = true;
ltlTutorial.Visible = false;
string xmlString = File.ReadAllText(Server.MapPath("XMLFile1.xml"));
Xml1.DocumentContent = xmlString;
Xml1.TransformSource = Server.MapPath("XSLTFile1.xslt");
如何在.NET中将xml文件转换为html? (即,一旦上传了xml文件,点击按钮就会转换成html文件) 有谁知道请帮我这个?