I have just bought web hosting with 123.reg and have uploaded my asp.net site and database.My web.config file currently has the following as the connection string:\[code\] <connectionStrings> <add name="RaiseConnectionString" connectionString="Data Source=MATT-PC\SQLEXPRESS;Initial Catalog=Raise;Integrated Security=True" providerName="System.Data.SqlClient"/></connectionStrings>\[/code\]The issue comes however with with 123.reg account, as it requires the connection string format to be:\[code\] <appSettings><add key="ConnectionString" value="http://stackoverflow.com/questions/15603243/Server=ATLAS-SQL-07; Database=Raise; User Id=Raise; Password=******" /> </appSettings>\[/code\]By changing this I get an error in my application as it cannot find the connection string Raise. How can I rectify this?