I have a classic asp web page that works perfectly with SQL 2000. It does not, however, work with SQL 2005. What do I need to do on the server to get this to work? I've already enabled TCP/IP from within the Surface Area Configuration Tool. This is my connection string:
<%
Dim oConnection
Set oConnection = Server.CreateObject("ADODB
.Connectio
n")
oConnection.Open "provider=sqloledb;server=
127.0.0.1;
uid=userna
me;pwd=P@s
sw0rd;data
base=dbnam
e;"
%>
Help! :)
Start Free Trial