Not sure if I have understood your objective properly and sorry to change you syntax style, anyhow
<table>
<%
do until rs.EOF
for each x in rs.Fields %>
<tr>
<td><b><%= x.name %></b></td>
<td><a href="<%= x.value %>" title="Click to ...">Click to....</a></td>
</tr>
<% next
rs.MoveNext
loop%>
</table>
Wind is your friend
Matt
|