I have a xml/asp page in which I am entering bulletted list items
which are links. The list item shows up but the text is blank. When I
click view source the text is in the page and the text color has not
changed but it does not display on the page. If I select the text I
can see it and it is linked but for some reason I just can't see it on
the page. Can anyone help. Heres my xsl code.
<ul>
<xsl:for-each select="field[@name='headingbullets']/content/item">
<xsl:sort order="ascending" select="@order"/>
<li>
<b>
<a>
<xsl:attribute
name="href">documents/<xsl:value-of
select="field[@name='htmlfile']/@value"/></xsl:attribute>
<xsl:value-of
select="field[@name='bullet']/@value"/>
</a>
</b>
</li>
</xsl:if>
</xsl:for-each>
</ul>
which are links. The list item shows up but the text is blank. When I
click view source the text is in the page and the text color has not
changed but it does not display on the page. If I select the text I
can see it and it is linked but for some reason I just can't see it on
the page. Can anyone help. Heres my xsl code.
<ul>
<xsl:for-each select="field[@name='headingbullets']/content/item">
<xsl:sort order="ascending" select="@order"/>
<li>
<b>
<a>
<xsl:attribute
name="href">documents/<xsl:value-of
select="field[@name='htmlfile']/@value"/></xsl:attribute>
<xsl:value-of
select="field[@name='bullet']/@value"/>
</a>
</b>
</li>
</xsl:if>
</xsl:for-each>
</ul>