fnDbugRecordset() fnDbugRecordset(...) DESCRIPTION This function displays the contents of an ADO recordset on a blank web-page. All further output is terminated SYNTAX fnDbugRecordset(ADORecordset) EXAMPLE <%@ Language=VBScript %> <% Response.Buffer = true %> <% '-->-->-->-->-->-->-->-->--> dim adoCon set adoCon = fnConnectToDatabase("city_of_sydney", "203.62.157.199") set Rs = server.CreateObject("Adodb.recordset") rs.ActiveConnection = adoCon sQ = "select * from tblratestran" Rs.Open(sQ) fnDbugRecordset(rs) set rs = nothing set adoCon = nothing '--<--<--<--<--<--<--<--<--< %> RESULTS A formatted HTML table of recordset values (with field names) PARAMETERS adoRs {ADO recordset object}- The recordset to be displayed. STATUS working, tested 5% DEPENDENCIES LAST MODIFIED 14 April 2000 PROGRAMMER Matthew Bishop (matthew@massive.com.au or matth3wbishop@yahoo.com) LOCATION c:http://www.geocities.com/matth3wbishop/eg/asp/ DOCUMENTATION http://www.geocities.com/matth3wbishop/eg/asp/ COMMENTS: a) small utility function b) c)