HTML file (cd.html)
<HTML>
<Head>
<Script for = "window" event = "onLoad">
Xmldso. xmldocument. Load ("CD. xml ");
</SCRIPT>
<Script language = "JavaScript">
Function movenext ()
{
If (xmldso. recordset. absoluteposition <xmldso. recordset. recordcount)
{
Xmldso. recordset. movenext ();
}
}
Function moveprevious ()
{
If (xmldso. recordset. absoluteposition> 1)
{
Xmldso. recordset. moveprevious ();
}
}
</SCRIPT>
<Title> Cd navigate </title>
</Head>
<Body>
<Object width = "0" Height = "0" classid = "CLSID: 550dda30-0541-11d2-9ca9-0060b0ec3d39" id = "xmldso"> </Object>
<P>
<Table>
<Tr> <TD> title: </TD> <span id = "title" datasrc = # xmldso dataworks = "title"> </span> </TD> </tr>
<Tr> <TD> Artist: </TD> <span id = "artist" datasrc = # xmldso dataworks = "artist"> </span> </TD> </tr>
<Tr> <TD> year: </TD> <span id = "year" datasrc = # xmldso data== "year"> </span> </TD> </tr>
<Tr> <TD> country: </TD> <span id = "country" datasrc = # xmldso data== "country"> </span> </TD> </tr>
<Tr> <TD> company: </TD> <span id = "company" datasrc = # xmldso dataworks = "company"> </span> </TD> </tr>
<Tr> <TD> price: </TD> <span id = "price" datasrc = # xmldso dataworks = "price"> </span> </TD> </tr>
</Table>
</P>
<P>
<Input type = button value = "previous CD" onclick = "moveprevious ()">
<Input type = button value = "next CD" onclick = "movenext ()">
</P>
</Body>
</Html>
XML file (CD. XML)
<? XML version = "1.0"?>
<Catalog>
<Cd>
<Title> empire burlesque </title>
<Artist> Bob Dylan </artist>
<Country> USA </country>
<Company> Columbia </company>
<Price> 10.90 </price>
<Year> 1985 </year>
</Cd>
<Cd>
<Title> hide your heart </title>
<Artist> Bonnie Tylor </artist>
<Country> UK </country>
<Company> CBS Records </company>
<Price> 9.90 </price>
<Year> 1988 </year>
</Cd>
<Cd>
<Title> Greatest Hits </title>
<Artist> Dolly Parton </artist>
<Country> USA </country>
<Company> RCA </company>
<Price> 9.90 </price>
<Year> 1982 </year>
</Cd>
<Cd>
<Title> still got the blues </title>
<Artist> Gary more </artist>
<Country> UK </country>
<Company> virgin redords </company>
<Price> 10.20 </price>
<Year> 1990 </year>
</Cd>
<Cd>
<Title> Eros </title>
<Artist> Eros ramazzotti </artist>
<Country> Eu </country>
<Company> BMG </company>
<Price> 9.90 </price>
<Year> 1997 </year>
</Cd>
</CATALOG>