Ok well how about this, I have the database and table set-up but when I run this I don't get anything to display:<html><body><%ON ERROR RESUME NEXTDim con,sql,constring, rsSet con = Server.CreateObject("ADODB.Connection")%><!-- #include file="dbConnect.ssi" --><%set objRS=Server.CreateObject("ADODB.recordset")'I open my connectioncon.Open dbConnect%> <script language="Javascript"><!-- Create the arrays -->var a = new Array(<%'Select all of the objects from the DB and while still not end of fileSQL = "select * from PROJECT"objRS.Open SQL, dbConnectdo while not objRS.EOF%>newArray(<%=objRS("proj_name")%>, <%=objRS("proj_id")%>, <%=objRS("proj_parent")%>, <%=objRS("purpose")%>, <%=objRS("description")%>, <%=objRS("start_date")%>, <%=objRS("EstComp_date")%>);<%objRS.movenextLoop objRS.closecon.closeset con = nothing%>);<!-- 'A for loop to populate the arrays -->for (i = 0; i < a.length; i++) { for (j = 0; j < a[i].length; j++) { document.write("a[",i,"][",j,"] = ", a[i][j], "<BR>"); } }}</script></body></html>