I think this works;
<xsl:element name="a">
<xsl:attribute name="href">
<xsl:value-of select="concat('mailto:', people/fname, '.', people,sname,
'@', people/comp, '.com')" />
</xsl:attribute>
<xsl:value-of select="concat(people/fname, ' ', people,sname" /><br/>
</xsl:element>
Replying to myself,
Peelo
"Peelo" <> wrote in message
news:besfqs$cov$...
> Hello,
>
> I've read a few tutorials but still can't figure out how to xsl next:
>
> from xml:
> <people>
> <fname>John</fname><sname>Doe</sname><comp>Netscape</comp>
> <fname>James</fname><sname>Doe</sname><comp>Sun</comp>
> </people>
>
> to html:
> <a href="">John Doe</a><br>
> <a href="">John Doe</a><br>
>
> TIA
>
> Peelo
>
>
|