XML高分求助(在线)
谁知道用DOM 怎么样把 <?xml-stylesheet type= "text/xsl " href= "XSLTFile1.xsl "?> 加到XML文件中去?用C#
小弟急,谢谢了
[解决办法]
我不知道你的目的是想做什么,我估计,你最好能说说你的目的,这样可以方便给你想出方便解决方案
不知道你是不是想把xslt写到xml中,再根据xml的节点内容include不同的xslt?
[解决办法]
是想用xsl获取对应XML文件的信息吗?
[解决办法]
XmlDocument.CreateProcessingInstruction 方法(System.Xml)
using System;
using System.IO;
using System.Xml;
public class Sample
{
public static void Main()
{
XmlDocument doc = new XmlDocument();
// Create a procesing instruction.
XmlProcessingInstruction newPI;
String PItext = "type= 'text/xsl ' href= 'XSLTFile1.xsl ' ";
newPI = doc.CreateProcessingInstruction( "xml-stylesheet ", PItext);
// Display the target and data information.
Console.WriteLine( " <?{0} {1}?> ", newPI.Target, newPI.Data);
// Add the processing instruction node to the document.
doc.AppendChild(newPI);
}
}