On Thursday 28 March 2002 09:50 am, Hahn Kurt (CHA) wrote: >. . . > <xsl:value-of select="//content"/> >. . . > gives me everything in the original document, and that's OK. However, I > replace "content" with some other element, like > <xsl:value-of select="//row"/> > it gives me just an empty tag
Most probably <row> is in a different namespace, in which case you have to indicate the namespace in the match pattern, something like <xsl:value-of select="//sql:row"/> assuming the sql namespace (or whatever prefix you want to use) is declared properly. -- Bertrand Delacrétaz (codeconsult.ch, jfor.org) buzzwords: XML, java, XSLT, cocoon, mentoring/teaching/coding. disclaimer: eternity is very long. mostly towards the end. get ready. --------------------------------------------------------------------- Please check that your question has not already been answered in the FAQ before posting. <http://xml.apache.org/cocoon/faqs.html> To unsubscribe, e-mail: <[EMAIL PROTECTED]> For additional commands, e-mail: <[EMAIL PROTECTED]>