How do i define an URL in the XSL stylesheet. In my xml file the following is defined:
<URL_x0020_aaa><a href="/LinkClick.aspx?link=http%3a%2f%2fwww.xxxxxx.nl&tabid=158&mid=663" target="_blank">www.xxxxxx.nl</a></URL_x0020_aaa>
<URL_x0020_aaa_UDT_Url>/LinkClick.aspx?link=http%3a%2f%2fwww.xxxxxx.nl&tabid=158&mid=663</URL_x0020_aaa_UDT_Url>
<URL_x0020_aaa_UDT_Orginal>www.xxxxxx.nl</URL_x0020_aaa_UDT_Orginal>
The value
www.xxxxxx.nl was entered in the UDT using the URL type setting.
In the XSL i defined the following:
<td align="left">
<a>
<xsl:attribute name="href">
<xsl:value-of select="udt:URL_x0020_aaa_UDT_Orginal" />
</xsl:attribute>
</a>
<br/>
</td>
However, the result of this is that nothing is shown in my table. What do i do wrong?