I would like to display my search results in a table-like fashion. Does anyone know any good technique that I can use to display my custom columns in a table fashion?
I used a html table, but it keeps repeating even though I used this:
<xsl:if test="(position())=1">
<tr>
<td>Address</td>
</tr>
</xsl:if>
<tr>
<td>content goes here</td>
</td>
It is still adding spaces between each row and it looks like separate tables. I would like it to look like a gridview, or like the one in a list or library.
Thank you for your help.