Help....This is my xml file. I am trying to display/desing the layout for a asp page. I need to be able to select each category and display in specific area on the asp page.(for example.. I need to be able to select category-name = 'Articles' and display all the category-items under that category and do the same for the other categories.) I am playing with the xslt however, I am still having problems. I am not sure if I can do that...very new to xml/xsl ...Thanks
<?xml version="1.0" encoding="iso-8859-1"?>
<CARD>
<DATAAREA>
<folder>
<folder-name>Name of Folder</folder-name>
<category>
<category-name>Articles</category-name>
<category-items>
<item-name>more blah blah..</item-name>
<item-description>blah blah..</item-description>
<item-id>1100</item-id>
</category-items>
<category-items>
<item-name>More More blahh</item-name>
<item-description>xxdhfkas</item-description>
<item-id>1001</item-id>
</category-items>
</category>
<category>
<category-name>FAQ</category-name>
<category-items>
<item-name>blahh blahh.</item-name>
<item-description>more.</item-description>
<item-id>1101</item-id>
</category-items>
<category-items>
<item-name>blahh blahh...</item-name>
<item-description>more..</item-description>
<item-id>1022</item-id>
</category-items>
</category>
.
.
. more
</folder>
</DATAAREA>
</CARD>
<?xml version="1.0" encoding="iso-8859-1"?>
<CARD>
<DATAAREA>
<folder>
<folder-name>Name of Folder</folder-name>
<category>
<category-name>Articles</category-name>
<category-items>
<item-name>more blah blah..</item-name>
<item-description>blah blah..</item-description>
<item-id>1100</item-id>
</category-items>
<category-items>
<item-name>More More blahh</item-name>
<item-description>xxdhfkas</item-description>
<item-id>1001</item-id>
</category-items>
</category>
<category>
<category-name>FAQ</category-name>
<category-items>
<item-name>blahh blahh.</item-name>
<item-description>more.</item-description>
<item-id>1101</item-id>
</category-items>
<category-items>
<item-name>blahh blahh...</item-name>
<item-description>more..</item-description>
<item-id>1022</item-id>
</category-items>
</category>
.
.
. more
</folder>
</DATAAREA>
</CARD>