fnDisplay(...) Syntax: fnDisplay(FirstFile, [sVariableType]) Description: This function is a close parallel to the fnDebug function, but instead of terminating all html output with response.end it allows other content to appear on a page. Essentially it consists of combining the various fnDisplay... functions which I have written in the past; (For example: fnDisplayRecordset(), fnShowRecord(), fnDisplayOneDimArray() fnDisplayTwoDimArray(), fnDbugFormContents() etc... ). It can be used to display a string, a set of Form Contents, a set of QueryString contents, the contents of a File or two, an ActiveX Data Objects recordset, Example UNTESTED CODE <%@ Language=VBScript %> <% Response.Buffer = true %> <% '-->-->-->-->-->-->-->-->--> fnDisplay("record", "SELECT blah etc", adoConnection); '--<--<--<--<--<--<--<--<--< %> Results [continued] Parameters ooDebugObject {string, recordset, array..., Required} [sDebugType] {string, default="string"} This parameter specifies the type of object which is to be "string" The string is displayed on the Web page with whitespace encoded in Html "recordset" The adoRecordset is displayed in a table format on the web page with Field names as column headings "form" The contents of the html form is displayed in a table format on the web page "query" The contents of the html querystring is displayed on the web page "array" The elements of the array (one or two dimensional) are displayed on the web page Status TO DO, its a big job, lots of compilation Last Modified 20 may 2000 Programmer: Matthew Bishop Email: matth3wbishop@yahoo.com Dependencies fnErrorMessage [fnErrorMessage.asp] etc Location \mjblibrary\aspscripts\sourceCodeV1\fnDisplay.asp Documentation \mjblibrary\aspscripts\Documentation\fnDisplay.doc Language Microsoft Jscript Comments: See Also: fnDebug, fnDisplayFileContents, fnDisplayRecordset, fnDisplayRecord these functions were precursors to the general function (which has not been written Additional Example: <%@ Language=VBScript %> <% Response.Buffer = true %> <% '-->-->-->-->-->-->-->-->--> fnDisplay("c:\boot.ini") '--<--<--<--<--<--<--<--<--< %>