noviceuser2004
MIS
Hello,
Could someone kindly help me?
I have the xsl and xml file below. My question is after I've selected a CD title, how can I display that CD in detail description with country, price, year, etc?
Thanks,
Tracy
cd.xsl file
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl=" <xsl:template match="/">
<HTML><BODY>
<table>
<tr>
<td>CD Title</td>
<td>
<select>
<xsl:for-each select="/CATALOG/CD">
<option>
<xsl:attribute name="value"><xsl:value-of select="TITLE/text()"/>
</xsl:attribute>
</option>
<xsl:value-of select="TITLE/text()"/>
</xsl:for-each>
</select>
</td>
</tr>
</table>
</BODY></HTML>
</xsl:template>
</xsl:stylesheet>
cd.xml file
<?xml version="1.0" encoding="ISO8859-1" ?>
<?xml-stylesheet type="text/xsl" href="cd.xsl"?>
<CATALOG>
<CD>
<TITLE>Hotel Paper</TITLE>
<ARTIST>Michelle Branch</ARTIST>
<COUNTRY>USA</COUNTRY>
<COMPANY>Maverick</COMPANY>
<PRICE>10.90</PRICE>
<YEAR>2003</YEAR>
</CD>
<CD>
<TITLE>Empire Burlesque</TITLE>
<ARTIST>Bob Dylan</ARTIST>
<COUNTRY>USA</COUNTRY>
<COMPANY>Columbia</COMPANY>
<PRICE>10.90</PRICE>
<YEAR>1985</YEAR>
</CD>
</CATALOG>
Could someone kindly help me?
I have the xsl and xml file below. My question is after I've selected a CD title, how can I display that CD in detail description with country, price, year, etc?
Thanks,
Tracy
cd.xsl file
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl=" <xsl:template match="/">
<HTML><BODY>
<table>
<tr>
<td>CD Title</td>
<td>
<select>
<xsl:for-each select="/CATALOG/CD">
<option>
<xsl:attribute name="value"><xsl:value-of select="TITLE/text()"/>
</xsl:attribute>
</option>
<xsl:value-of select="TITLE/text()"/>
</xsl:for-each>
</select>
</td>
</tr>
</table>
</BODY></HTML>
</xsl:template>
</xsl:stylesheet>
cd.xml file
<?xml version="1.0" encoding="ISO8859-1" ?>
<?xml-stylesheet type="text/xsl" href="cd.xsl"?>
<CATALOG>
<CD>
<TITLE>Hotel Paper</TITLE>
<ARTIST>Michelle Branch</ARTIST>
<COUNTRY>USA</COUNTRY>
<COMPANY>Maverick</COMPANY>
<PRICE>10.90</PRICE>
<YEAR>2003</YEAR>
</CD>
<CD>
<TITLE>Empire Burlesque</TITLE>
<ARTIST>Bob Dylan</ARTIST>
<COUNTRY>USA</COUNTRY>
<COMPANY>Columbia</COMPANY>
<PRICE>10.90</PRICE>
<YEAR>1985</YEAR>
</CD>
</CATALOG>