Simply make some text a link, such as the country, passing a query string value populated by the recordset. Then your detail page will use the query string value from Request.QueryString("ID") to query the database for more information.
Code:
<table>
<%
'''Open a connection and query the DB for a recordset'''
While NOT Recordset.EOF 'EOF = End Of File
Response.Write "<tr><td><a href=""detailpage.asp?ID=" & Recordset("ID") & """>" & Recordset("Value1") & "</a></td></tr>" & vbCRLF
Recordset.MoveNext
WEnd
'''Close your recordset and DB connection'''
%>
</table>