I have 3 similar SQL queries that each will bring back 1 record with 5 fields.
I want to display each of these 3 records vertically in an HTML table.
Obviously I don't need sorting or paging so I don't want to waste overhead on a gridView.
<table>
<tr><td>Last</td><td>Col1</td><td>Col2</td><td>Col3</td></tr>
<tr><td>First</td><td>Col1</td><td>Col2</td><td>Col3</td></tr>
<tr><td>Middle</td><td>Col1</td><td>Col2</td><td>Col3</td></tr>
<tr><td>Gender</td><td>Col1</td><td>Col2</td><td>Col3</td></tr>
<tr><td>Birth Date</td><td>Col1</td><td>Col2</td><td>Col3</td></tr>
</table>
I want Col1, Col2 and Col3 to display results from their respective SQL queries.
What is the easiest way to go about this and could you provide an example?