<?xml version='1.0' encoding='utf-8'?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:a="http://schemas.example.com/2006/SenseXEnabled" exclude-result-prefixes="a">
<xsl:output method="html"/>

<xsl:template match="/">
	<html><head></head>
		<body>
			<table width="100%" border="1">
				<tbody>
				<xsl:value-of select="a:books"/>	<!--if i use 'a:' then 'books' will not appear but it still works.-->
					<xsl:for-each select="a:books/a:book">
						<tr>
							<td width="33%">
								<xsl:value-of select="@bookid"/>
							</td>
							<td width="33%">
								<xsl:value-of select="@pubdate"/>
							</td>
							<td width="33%">
								<xsl:value-of select="a:title"/>
							</td>
						</tr>
					</xsl:for-each>
				</tbody>
			</table>
		</body>
	</html>
</xsl:template>

</xsl:stylesheet><!-- Stylus Studio meta-information - (c) 2004-2006. Progress Software Corporation. All rights reserved.
<metaInformation>
<scenarios ><scenario default="yes" name="Scenario1" userelativepaths="yes" externalpreview="no" url="..\..\..\Program Files\Stylus Studio 2006 Release 2 XML Enterprise Edition\examples\query\Copy of books.xml" htmlbaseurl="" outputurl="" processortype="internal" useresolver="yes" profilemode="0" profiledepth="" profilelength="" urlprofilexml="" commandline="" additionalpath="" additionalclasspath="" postprocessortype="none" postprocesscommandline="" postprocessadditionalpath="" postprocessgeneratedext="" validateoutput="no" validator="internal" customvalidator=""/></scenarios><MapperMetaTag><MapperInfo srcSchemaPathIsRelative="yes" srcSchemaInterpretAsXML="no" destSchemaPath="" destSchemaRoot="" destSchemaPathIsRelative="yes" destSchemaInterpretAsXML="no"/><MapperBlockPosition></MapperBlockPosition><TemplateContext></TemplateContext><MapperFilter side="source"></MapperFilter></MapperMetaTag>
</metaInformation>
-->