Hi,
I was wondering how to loop through the field names in a database without writing an extensive embedded HTML list.
I know it is something like:
for each field in ...
![]()
cheers
| SitePoint Sponsor |



Hi,
I was wondering how to loop through the field names in a database without writing an extensive embedded HTML list.
I know it is something like:
for each field in ...
![]()
cheers


Code:For Idx = 0 To Rec.Fields.Count - 1 Response.Write( Rec.Fields(Idx).Name & ": " & Trim( Rec.Fields(Idx).Value ) & "<br>" ) Next



thank you....![]()
Bookmarks