The "ShowAllRecordSets" method is really only intended for help during development...check-out the surftest.asp sample in \aspsurfer\surfer and you'll see an iteration around the !ss.eof while, where the table to format the field data is iterated and surrounded with the right formatting.
Note that the ss.Field() method takes either a text parameter (name of the field) or a number (index of the field)-- when you want to display a value from a returned recordset row, you use ss.Field("nameofField") or ss.Field(indexOfField) to insert the value from the active row in the outbound HTML stream.
In case you missed it, you can read a lot about the available methods and properties in the AspRequest.html file...
|