admin
05-29-2003, 03:43 PM
Sometimes you just need a list of your table fields. Here's one way...
<% For i = 0 to RS.Fields.Count - 1 %>
<TH>
<%=RS(i).Name%>
</TH>
<% Next %>
<% For i = 0 to RS.Fields.Count - 1 %>
<TH>
<%=RS(i).Name%>
</TH>
<% Next %>