Hello,

We have installed GOLD-061808.DLL onto a w2k3 sp2 server and we get the following error on all pages. We have confirmed the problem with quote.asp, but pureasp and datatype.asp work fine. From what I can tell we have installed everything properly.

---------------------------------------
ASP error '800a000d'

Type mismatch

/test/datafile/quote.asp, line 11
---------------------------------------

<!-- #include File=..\ASPdb.Inc -->
<% Response.Buffer=True %>
<%
Set X= Server.CreateObject("ASP.DB")
X.dbUnit = "999"
X.dbMode = "Grid"
X.dbDBType = "Text"
X.dbDSN = "driver={Microsoft Text Driver (*.txt; *.csv)}; DriverId=27; MaxScanRows=5;defaultDir=" & server.mappath("../datafile")
X.dbSQL = "SELECT Symbol,Price,Change,Volume,High52Wk,PE FROM quotes.csv"
X.dbUserLocalText = zHead & ",<Center><h3>Sample Stock DB</h3></Center>;"
X.ASPdb
%>
---------------------------------------

Any advice?

Thanks,

Dean