Re: 'XSL-FO Problem'

xml file
-------
 <name>
	<fname>saurabh</fname>
	<lname>sinha</lname>
</name>
xsl file
------
<xsl:template match="name">
	<fo:block font-family="sans-serif" font-size="7pt">
			<xsl:value-of select="fname" />
			<xsl:value-of select='lname"/>
	</fo:block>
</xsl:template>
As your requirement is to display both "fname" and "lname" in same line, you
need to use it in the same block. Using other block forces new line.
Hope this will help.

Girish Kanmas
TI Extn: 1387
Mobile: +91 (80) 56728348

Received on Monday, 10 November 2003 06:14:18 UTC