How to determine your ADO version
Question:
How can I see what ADO version is installed on my server? Because I see that the Pures ASP Upload needs version 2.5
Answer:
Easy way to check for version would be
<%
set myConn = Server.CreateObject("ADODB.Connection")
strConn = myConn.Version
set myConn = Nothing
Response.Write(strConn)
%>
Comments
Problem with ADO Version
I have just installed the PureASP Upload 2, and am having problems with the upload when clicking on submit. I also installed the "How to check your ASP on the same page as the upload, and it returns 2.8. I have already tried uninstalling/reinstalling all items. I also have gone as far as trying a different server.
The error I get says that I do not have ADO 2.5 or higher installed on the server, but I am sure I do.
Any Thoughts?
You must me logged in to write a comment.