and if you are attempting to get the column names by that ADODB.Field you would loop the RS as
Dim Fld
For Each Fld In rsField.Fields
Response.Write("Fieldname: " & Fld.Name & "<br>")
Next
maybe a bit of details on what you're doing will help out
Thanks, that's exactly what I was trying to do. I didn't realize you can do it after opening the recordset, without instantiating an ADODB.Field object. My code now works with your example.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.