I have this to access the fields inside my database.
If Not objCleanUpRS.EOF Then
objCleanUpRS.MoveFirst
'Show data
Do While Not objCleanUpRS.EOF
Response.Write "<tr>" & vbCrLf
For I = 0 To objCleanUpRS.Fields.Count - 1
Response.Write vbTab & vbTab & "<td>" & objCleanUpRS.Fields(I) & "</td>" & vbCrLf
Next
Response.Write vbTab & "</tr>" & vbCrLf
objCleanUpRS.MoveNext
Loop
End If
Response.Write "</table>" & vbCrLf
this will print out the two records in my database
02/02/2003 James
02/03/2003 Mike
I want to access the header name.
I need to know the keywords to access
Date Name
this access the field
objCleanUpRS.Fields(I)
what word access the header (I'm not sure that header is the right word to for it but basically it is the name of what is in the field)
Bookmarks