My ASP application connects to the network server where SQL Server 2000 is installed with no problem. The old code that works:
myConn.Open ("Driver={SQL Server};
Server=myNetwrkServer;
Database=myDB;
UID=myID;PWD=myPWD;Trusted_Connection=NO;")
An instance of SQL server 2008 was installed on the same network server. The new code doesn't work:
myConn.Open ("Driver={SQL Server Native Client 10.0};
Server=myNetwrkServer\SQLServ2008;
Database=myDB;
UID=myID;PWD=myPWD;Trusted_Connection="NO";)
Please help!