Here's the pertinent part of web.config. The format is a little different but that's the way it was in the original file. Should I make them exactly the same?
...
<connectionStrings>
<!--
Connection String for SQL Server 2005 Express
<add name="SiteSqlServer"
connectionString="Data Source=.\SQLExpress;Integrated Security=True;User Instance=True;AttachDBFilename=|DataDirectory|Database.mdf;"
providerName="System.Data.SqlClient" />
-->
<!--
Connection String for SQL Server 2000/2005
-->
<add name="SiteSqlServer" connectionString="Data Source=______;Initial Catalog=_____;User ID=_____;Password=________"
providerName="System.Data.SqlClient" />
</connectionStrings>
<appSettings>
<!--
Connection String for SQL Server 2005 Express - kept for backwards compatability - legacy modules
<add key="SiteSqlServer" value="Data Source=.\SQLExpress;Integrated Security=True;User Instance=True;AttachDBFilename=|DataDirectory|Database.mdf;"/>
-->
<!--
Connection String for SQL Server 2000/2005 - kept for backwards compatability - legacy modules
-->
<add key="SiteSqlServer" value="Server=_____;Database=_____;uid=_____;pwd=_____;" />
<add key="InstallTemplate" value="DotNetNuke.install.config"/>
<add key="AutoUpgrade" value="false"/>
....