When i pass a node to XslTransform like this:
XslTransform xslTran = new XslTransform();
xslTran.Load("C:\\Documents and Settings\\B1433529\\Desktop\\container.xsl"
xslTran.Transform(node, null, sw);
does it treat it any differently where in the tree the node is so if i have:
<document>
<inner/>
</document
would it treat it the exact same if the node is of inner of if it is the entire document??
XslTransform xslTran = new XslTransform();
xslTran.Load("C:\\Documents and Settings\\B1433529\\Desktop\\container.xsl"
xslTran.Transform(node, null, sw);
does it treat it any differently where in the tree the node is so if i have:
<document>
<inner/>
</document
would it treat it the exact same if the node is of inner of if it is the entire document??