I am tryiny to render an xml doc to HTML. the xml is like this:
<?xml version="1.0"?>
<links>
<link name="XML Pitstop" url=" description="A great place for XML Demos."/>
</links>
I have to display the "name" and "description" attributes as html, that works fine using XSLT. but how to put the URL as a hyperlink on the "name" attribute. i cannot do that
<?xml version="1.0"?>
<links>
<link name="XML Pitstop" url=" description="A great place for XML Demos."/>
</links>
I have to display the "name" and "description" attributes as html, that works fine using XSLT. but how to put the URL as a hyperlink on the "name" attribute. i cannot do that