The error isn't quite how you posted originally
Code:
Microsoft OLE DB Provider for SQL Server error '80040e4d'
Invalid connection string attribute
/Reports/Reports.asp, line 48
Can you confirm what is on line 48; I assume it is this
Code:
objConnection.Open strConnectString 'this is the line where it is throwing error
But would just like you to double check
I notice that you've not used parenthesis with the Open command; can you try it with these? i.e.
Code:
Response.Write(strConnectString)
objConnection.Open(strConnectString)
I have added a response.write command; can you post the results of this too please?