Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Passing a node to XslTransform

Status
Not open for further replies.

BPMan

Programmer
Jun 25, 2002
163
US
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??

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top