To riterate
I have
<xsl:template match="tblMIM">
<xsl:choose>
<xsl:when test="$searchby=0">
<xsl:for-each
select="tblMIMCompanies/tblMIMSubSectors[(_at_)subsectorID=$subsector]">
<xsl:apply-templates select="tblMIMCompanies"/>
</xsl:for-each>
</xsl:when>
<xsl:otherwise>
<xsl:for-each
select="tblMIMCompanies/tblMIMSubSectors[(_at_)sectorID=$sector]">
<xsl:apply-templates select="tblMIMCompanies"/>
</xsl:for-each>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template match="tblMIMCompanies">
<table width="100%">
<tr>
<td width="100">Name:</td>
<td><xsl:value-of select="@name"/></td>
</tr>
<tr>
<td width="100">Building:</td>
<td><xsl:value-of select="@building"/></td>
</tr>
</table>
</xsl:template>
the xml looks like
<tblMIM>
<tblMIMCompanies name="A Ltd" building="A House">
<tblMIMSubSectors subsectorID="55" sectorID="3"/>
</tblMIMCompanies>
<tblMIMCompanies name="B Ltd" building="B House">
<tblMIMSubSectors subsectorID="25" sectorID="4"/>
</tblMIMCompanies>
</tblMIM>
but i have no output. any ideas?
regards
Luke