ASP Error: 70
Description: Permission denied
Source: Microsoft VBScript runtime error
|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: Dynamical work with child nodes
Depends on what you want to do - lots of possibilities.
Within your template: <xsl:template match='row'> <!-- or however you select your <row> elements --> <xsl:apply-templates select='*'/> <!-- to exclude immediate child TEXT nodes - no select needed to include them --> <!-- you need to have templates defined to match the respective child elements occurring --> <!-- OR --> <xsl:for-each select='*'> <!-- to explicitly process them - e.g. sorted on their names --> <xsl:sort order='ascending' data-type='text' use='name()'/> <!-- ... whatever you want to do ... even <xsl:if test='name() = 'id'>....</xsl:if> --> </xsl:for-each> <!-- OR to call specialised templates to just process the ones you want --> <xsl:call-template name='magic-stuff'> <xsl:with-param name='IDS' select='id'/> </xsl:call-template> </xsl:template> Not sure if this helps or not (NSITHON). Roland Juergens wrote: Hi,
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








