Image

Imagebloc07 wrote in Imagewebdev

asp help

I'm doing some asp, but all of my experience is with linux and linux related tools like python, php, mysql, etc.

Basically, I can't find any good resources for asp/vb script. Nothing akin to the docs on python.org or php.net.

Here is my current problem. I have a result set I got from an adodb connection and I want to loop through all the fields, but the number of fields may vary. Here's my code.
    If not RS.eof then
    	RS.movefirst
    	Do
            
            'this doesn't work so how would I do this.
            for each field in rs.fields 
    	        Response.write "Here is some Data " & field & "<br>"
            next
            Rs.movenext
    	Loop until RS.eof
    End if


Any help or links to good resources will be greatly appreciated.