basically, i have the following
[something]
[something_child][/something_child]
[/something]
[something]
[something_child]some text[/something_child]
[/something]
and i want to use xsl to basically say, if the something_child has no value, or is empty like the first record, then print nothing, if it does have a value, then print [a][xsl:attribute name="href"][xsl:value-of select="something_child"/][/xsl:attribute]link[/a]
how would i do that?
[something]
[something_child][/something_child]
[/something]
[something]
[something_child]some text[/something_child]
[/something]
and i want to use xsl to basically say, if the something_child has no value, or is empty like the first record, then print nothing, if it does have a value, then print [a][xsl:attribute name="href"][xsl:value-of select="something_child"/][/xsl:attribute]link[/a]
how would i do that?