Given this xml
<Documents>
<Section>
<SectionName>Green</SectionName>
<Document>
<FileName>Tier 1 Schedules</FileName>
</Document>
<Document>
<FileName>Tier 3 Schedules</FileName>
</Document>
<Document>
<FileName>Setback Schedule</FileName>
</Document>
<Document>
<FileName>Tier 2 Governance</FileName>
</Document>
</Section>
<Section>
<SectionName>MRO/Refurb</SectionName>
<Document>
<FileName>Tier 2 Governance</FileName>
</Document>
</Section>
</Documents>
What would the xslt be to output this html
<table>
<tr>
<td>Green</td>
</tr>
<tr>
<td>Tier 1 Schedules</td>
</tr>
<tr>
<td>Tier 3 Schedules</td>
</tr>
<tr>
<td>Setback Schedule</td>
</tr>
<tr>
<td>Tier 2 Governance</td>
</tr>
<tr>
<td>MRO/Refurb</td>
</tr>
<tr>
<td>Tier 2 Governance</td>
</tr>
</table>
I could do this in asp.net but not sure how to do the loops in xslt.
Thanks, Al