Hi,
habe folgendes Problem.Ich habe eine schleife mit name und will diesen Namen verlinken.
d.h.
<---xml---->
<?xml version="1.0"?>
<pdf_downloads>
<items>
<item>
<name_de>mjk</name_de>
<download_url>http://www.pfd-download.pdf.</download_url>
</item>
</item>
</items>
</pdf_downloads>
<---------XSL ----->
<?xml version="1.0" encoding="windows-1252"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<xsl:template match="/">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252" />
<title>mjk</title>
</head>
<body>
<table>
<xsl:for-each select="pdf_downloads/items/item">
<tr>
<td width="25" valign="top"><img src="../../img/img_icon_pdf.gif" width="14" height="15" border="0" alt="Download PDF" title="Download PDF" /></td>
<td width="515" valign="top">
<a href="{}@download_url"><xsl:value-of select="name_de"/></a>
</td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
--------------------------
Es muss also im a href irgendwie das <download_url> eingebunden werden.
wer kann mir helfen?