[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: Nodelist as input parameter to XSL stylesheet in .

Subject: Re: Nodelist as input parameter to XSL stylesheet in .NET
From: Oleg Tkachenko <oleg@xxxxxxxxxxxxx>
Date: Wed, 22 Sep 2004 14:36:40 +0200
xsl input parameter
Ragulf Pickaxe wrote:

I am sorry for this vendor-specific question, but I really hope that someone can help me out here.

Using C# in .NET, I have an aspx file with an Xml control (Xml1). I try to pass a nodeset as a parameter to the xsl file

that transform the xml document (oXmlDoc). This is not succesful. Can someone tell me what I am doing wrong, and how I am

able to pass a nodelist to the stylesheet?

In .NET XSLT data types are mapped to .NET types in the following way: string System.String boolean System.Boolean number System.Double RTF System.Xml.XPath.XPathNavigator node-set System.Xml.XPath.XPathNodeIterator

So to pass nodeset you have to pass an instance of the XPathNodeIterator class.

C# code snippet:
System.Xml.XmlDocument oXmlDoc = new System.Xml.XmlDocument();
oXmlDoc.LoadXml(sXml); // sXml is the string containing the XML
System.Xml.XmlNodeList oList = oXmlDoc.SelectNodes("/Root/Elem[@ID='1' or @ID='3' or @ID='4']");

XPathNodeIterator oList = oXmlDoc.CreateNavigator().Select("/Root/Elem[@ID='1' or @ID='3' or @ID='4']");


--
Oleg Tkachenko
http://blog.tkachenko.com
Multiconn Technologies, Israel

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.