|
[XSL-LIST Mailing List Archive Home]
[By Thread]
[By Date]
[Recent Entries]
[Reply To This Message]
Newbie Question
Subject: Newbie Question
From: "Darren Hammond" <dhammond@xxxxxxxxx>
Date: Thu, 12 Aug 1999 09:54:42 -0400
|
This is a style sheet definition that I am using. On the line
that reads
"<TD><xsl:value-of
select="email"/></TD>"
I would like to make the value a Mailto reference. How do I do
this?
Thanks.
<?xml version='1.0'?> <xsl:stylesheet
xmlns:xsl="http://www.w3.org/TR/WD-xsl"> <xsl:template
match="/">
<HTML>
<BODY> <CENTER>
<TABLE
BORDER="2">
<TR>
<TD>NAME</TD>
<TD>CO-OP</TD>
<TD>PHONE</TD>
<TD>EMAIL</TD>
<TD>FTP</TD>
<TD>FAX</TD>
</TR>
<xsl:for-each
select="clients/order">
<TR>
<TD><xsl:value-of
select="name"/></TD>
<TD><xsl:value-of
select="coop"/></TD>
<TD><xsl:value-of
select="phone"/></TD>
<TD><xsl:value-of
select="email"/></TD>
<TD><xsl:value-of
select="ftp"/></TD>
<TD><xsl:value-of
select="fax"/></TD>
</TR>
</xsl:for-each>
</TABLE></CENTER>
</BODY> </HTML>
</xsl:template> </xsl:stylesheet>
|
|
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
| RSS 2.0 |
|
| Atom 0.3 |
|
|