fnSimpleDisplayRecordset() fnSimpleDisplayRecordset(...) DESCRIPTION See fnDisplayRecordset instead This function displays the contents of an ADO recordset on a web-page. SYNTAX fnSimpleDisplayRecordset(ADORecordset) EXAMPLE <%@ Language=VBScript %> <% Response.Buffer = true %> <% '-->-->-->-->-->-->-->-->--> dim adoCon dim Rs 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) fnSimpleDisplayRecordset(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 fnConvertArray (?.asp), LAST MODIFIED 16 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) This function has no formatting options. b) has error handling c)