ASP Source Code:
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<head>
<title>The house raising via XML</title>
<style type="text/css">
body {
color: blue;
font-size: 14pt;
text-align=center;
}
</style>
</head>
<body>
<p>
<H1><xsl:value-of select="collection/Title"/></H1>
<BR/>
<xsl:for-each select="collection/picture">
<xsl:sort select="sort_key"/>
<xsl:value-of select="description"/><br/>
<a>
<xsl:attribute name="href">
<xsl:value-of select="pic_file_big"/>
</xsl:attribute>
<IMG BORDER="0" WIDTH="100">
<xsl:attribute name="SRC">
<xsl:value-of select="pic_file_small"/>
</xsl:attribute>
</IMG>
</a>
<br/><xsl:value-of select="date"/><br/>
<BR/><HR/><BR/>
</xsl:for-each>
</p>
</body>
</html>
</xsl:template></xsl:stylesheet>