¿How can this process be done? I believe the following code should work nicely:
XML document
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE ecosistemas SYSTEM "Cocuments and SettingsUsuarioEscritorioPruebas XMLsimplexlink.dtd">
<?xml-stylesheet href="simplelink.xsl" type="text/xsl"?>
<ecosistemas
xmlns:xlink="xlink:type="simple"
xlink:show ="new"
xlink:actuate ="user"
xlink:role="ecosistema panel"
xlink:title="Panel de ecosistemas del Parque"
xlink:href="./Ecosistema1.xml" >
Ecosistema Mediterráneo
</ecosistemas>
XSL document
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl=" xmlns:fo=" xmlns:xs=" xmlns:fn="
<xsl:template match="/">
<html>
<body>
<a> <xsl:value-of select="ecosistemas"/> </a>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
Shouldn't it show a document with an hyperlink that when clicked would open Ecosistema1.xml? Why does it just show "Ecosistema mediterraneo" as simple text?
Thanks in advance.
XML document
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE ecosistemas SYSTEM "Cocuments and SettingsUsuarioEscritorioPruebas XMLsimplexlink.dtd">
<?xml-stylesheet href="simplelink.xsl" type="text/xsl"?>
<ecosistemas
xmlns:xlink="xlink:type="simple"
xlink:show ="new"
xlink:actuate ="user"
xlink:role="ecosistema panel"
xlink:title="Panel de ecosistemas del Parque"
xlink:href="./Ecosistema1.xml" >
Ecosistema Mediterráneo
</ecosistemas>
XSL document
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl=" xmlns:fo=" xmlns:xs=" xmlns:fn="
<xsl:template match="/">
<html>
<body>
<a> <xsl:value-of select="ecosistemas"/> </a>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
Shouldn't it show a document with an hyperlink that when clicked would open Ecosistema1.xml? Why does it just show "Ecosistema mediterraneo" as simple text?
Thanks in advance.