I have been unsuccessful connecting to SQL server 2005 Express database from a Classic ASP site. In an attempt to locate error, I created an ASP.NET application and was able to connect and pull data using the same connection string without issue.
Dim mConnection
Set mConnection = Server.CreateObject ("ADODB.Connection")
mConnection.Open "Server=server;Database=database;UID=username;PWD=password"
PS. ASP site currently works on original system, so build and data is good (this is for new system).
Any suggestions?