hello,
i'm trying to make a link from the xsl file to a file that appears in one of my xml tags.
my xml file:
<Alert>
<Service>All</Service>
<Link>ConnectionsRate_08_15_11#30-59_194.29.36.11_values.xml</Link>
</Alert>
my xsl file:
...
<td><xsl:element name="a">
<xsl:attribute name="href">
<xsl:value-of select="Link"/>
</xsl:attribute>
<xsl:value-of select="Service"/>
</xsl:element></td>
...
it works with one problem, the link is cut, the html result file contains a link to the first part of the file name. it's like there is a limitation on the link length.
does anyone knows how to solve this problem???
thanks!!
i'm trying to make a link from the xsl file to a file that appears in one of my xml tags.
my xml file:
<Alert>
<Service>All</Service>
<Link>ConnectionsRate_08_15_11#30-59_194.29.36.11_values.xml</Link>
</Alert>
my xsl file:
...
<td><xsl:element name="a">
<xsl:attribute name="href">
<xsl:value-of select="Link"/>
</xsl:attribute>
<xsl:value-of select="Service"/>
</xsl:element></td>
...
it works with one problem, the link is cut, the html result file contains a link to the first part of the file name. it's like there is a limitation on the link length.
does anyone knows how to solve this problem???
thanks!!