Ticket #264 ( Closed )

Short Description Suppress ASP "base record" display
Entered By: gaucho When: 1999-03-05 16:24:17 Build: 1.03.28s
Categories Type: Question   Department: Product   Category: SurferScript
Description
How do I suppress displaying the "status" table. This is the table that gets returned and includes SessionKey.... Also, How can i try displaying the returned data with the way I want to format it. btw. with regards to the last question, it is working now with the logon.
Append By: WindSurfer  When: 1999-03-05 16:30:49  New Status: Pending Customer
Comment 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...