Y
Yama
Hi,
This code does not work in IE 6.0 but according to some article I found on
the web it should work; however they mention it working in IE 5.5. But then
how come not in IE6?
<html>
<body>
<!--
<?xml version="1.0" encoding="ISO-8859-1"?>
<CATALOG>
<CD>
<TITLE>Empire Burlesque</TITLE>
<ARTIST>Bob Dylan</ARTIST>
<YEARS>
<YEAR>1985</YEAR>
<YEAR>1986</YEAR>
<YEAR>1988</YEAR>
</YEARS>
</CD>
<CD>
<TITLE>Hide your heart</TITLE>
<ARTIST>Bonnie Tyler</ARTIST>
<YEARS>
<YEAR>1988</YEAR>
</YEARS>
</CD>
</CATALOG>
-->
<xml id="cdcat" src="cd_catalog.xml"></xml>
<table border="1" datasrc="#cdcat" id="tblParent">
<tr>
<td><span datafld="ARTIST"></span></td>
<td><span datafld="TITLE"></span></td>
<td>
<table border="0" datafld="YEARS" datasrc="#cdcat"
id="tblChild">
<tr>
<td><span datafld="YEAR"></span></td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
How can I make this work?
Thanks,
Yama
This code does not work in IE 6.0 but according to some article I found on
the web it should work; however they mention it working in IE 5.5. But then
how come not in IE6?
<html>
<body>
<!--
<?xml version="1.0" encoding="ISO-8859-1"?>
<CATALOG>
<CD>
<TITLE>Empire Burlesque</TITLE>
<ARTIST>Bob Dylan</ARTIST>
<YEARS>
<YEAR>1985</YEAR>
<YEAR>1986</YEAR>
<YEAR>1988</YEAR>
</YEARS>
</CD>
<CD>
<TITLE>Hide your heart</TITLE>
<ARTIST>Bonnie Tyler</ARTIST>
<YEARS>
<YEAR>1988</YEAR>
</YEARS>
</CD>
</CATALOG>
-->
<xml id="cdcat" src="cd_catalog.xml"></xml>
<table border="1" datasrc="#cdcat" id="tblParent">
<tr>
<td><span datafld="ARTIST"></span></td>
<td><span datafld="TITLE"></span></td>
<td>
<table border="0" datafld="YEARS" datasrc="#cdcat"
id="tblChild">
<tr>
<td><span datafld="YEAR"></span></td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
How can I make this work?
Thanks,
Yama