I am pretty much a newbie and I am not totally familiar with the proper setup of the web.config file for the SBSK. My web host uses SQL 2000, so I found the post on this forum where someone shared the script to create the database on SQL 2000 instead of the built in SQL 2005 Express - and that seeemd to work fine. I am now trying to mody the web.config file to connect to that database properly. Here is what I have so far:
<connectionStrings>
<remove name="LocalSqlServer"/>
<add name="MyConnectionString" connectionString="Data Source=[IP Address of remote sql server here],1433;
Network Library=DBMSSOCN;Initial Catalog=(db name here);User ID=xxxxxx;Password=xxxxxxxx;"/>
</connectionStrings>
I blanked out the IP Address of the remote SQL server (but I have verified that I can conect to it fine), as well as the user ID, password, and database name.
I am thinking I have something misconfigured - such as the NetworkLibrary value, or maybe it is something else. Any help from the forum is appreciated.
-John