<?xml version='1.0' encoding='utf-8' ?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output indent="yes" encoding="ascii" method="html"/>
<xsl:template match="/">
<html>
<body>
<center>
<table border="2">
<tr>
<th>Patient Id</th>
<th>First Name</th>
<th>Last Name</th>
</tr>
<xsl:apply-templates select="/resultset/row"/>
</table>
</center>
</body>
</html>


</xsl:template>


<xsl:template match="/resultset/row">
<tr>
	<td>
		<xsl:value-of select="patient_id"/>
	</td>
	<td>
		<xsl:value-of select="first_name"/>
	</td>
	<td>
		<xsl:value-of select="last_name"/>
	</td>
</tr>
</xsl:template>

</xsl:stylesheet>
<!-- Stylus Studio meta-information - (c)1998-2001 eXcelon Corp.
<metaInformation>
<scenarios ><scenario default="yes" name="Scenario1" url="file://c:\Temp\test.xml" htmlbaseurl="file://c:\temp" processortype="internal" commandline="" additionalpath="" additionalclasspath=""/><scenario default="no" name="Scenario1" url="file://c:\Temp\test.xml" htmlbaseurl="file://c:\temp" processortype="internal" commandline="" additionalpath="" additionalclasspath=""/></scenarios><MapperInfo  srcSchemaPath="" srcSchemaRoot="" destSchemaPath="" destSchemaRoot="" />
</metaInformation>
-->
