Got a bit of an odd problem.
This code works fine in every other browser, just not in IE9. Standard ADODB connection string being used:
Provider=sqloledb;Server=localhost\sqlexpress;Database=DB;uid=DBuser;password=DBPassword;MultipleActiveRecordSets=true;
Executed thus:
Dim dbGlobal
Set dbGlobal = Server.CreateObject("ADODB.Connection")
dbGlobal.Open sConnectionString
In every browser this works and the application then goes on to load, in IE9 I get the following error message back:
-2147467259: [DBNETLIB][ConnectionOpen (Connect()).]SQL Server does not exist or access denied.