hi, This is a XSLT related question. you should ask to the right list: http://www.mulberrytech.com/xsl/xsl-list
Anyway, in XSLT 1.0, you have 2 options to solve your problem: - either use a xsl:variable <xsl:variable name="fileName"> <xsl:apply-templates select="whatever"/> </xsl:variable> ... <fo:external-graphic width="18cm" src="http://localhost:7001/servlet/ChartViewer?chartTyp=pie&tmp={$fileName}"/> - or directly (if xsl:value-of can be used in place of xsl:apply-templates): <fo:external-graphic width="18cm" src="http://localhost:7001/servlet/ChartViewer?chartTyp=pie&tmp={whatever}"/> Pascal > -----Message d'origine----- > De : m_dieu [mailto:[EMAIL PROTECTED] > Envoyé : mercredi 24 octobre 2007 13:47 > > Hi everybody, > > I have to concatenate a "src" but I don't have an idea. > My problem looks like this: > > <fo:external-graphic > src="http://localhost:7001/servlet/ChartViewer?chartTyp=pie&tm > p="<xsl:apply-templates > select='whatever'/> width="18cm"></fo:external-graphic> > > I've also tried it with: > "...&tmp=+<xsl:apply-templates select='whatever'/>" > > or > "...&tmp="+<xsl:apply-templates select='whatever'/> > > Nothing works yet :-( > Is there any possibility to solve this problem? --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
