Есть приложение на asp .NET. Появилась необходимость его ( и его базу ) немного изменить. Сделал копию приложения и базы. Правлю файл web.config в корне. Запускаю копию приложения, а оно по прежнему со старой базой работает.
База оригинала Phones в web.config подключается так
<connectionStrings>
<remove name="LocalSqlServer" />
<add connectionString="Server=SERVERBD;Database=Phones;Integrated Security=true" name="PhonesConnectionString" providerName="System.Data.SqlClient" />
<add connectionString="Server=SERVERBD;Database=Phones;Integrated Security=true" name="PhonesConnectionString2" providerName="System.Data.SqlClient" />
<add connectionString="Server=SERVERBD;Database=Phones;Integrated Security=true" name="PhonesConnectionString3" providerName="System.Data.SqlClient" />
<add connectionString="Server=SERVERBD;Database=Phones;Integrated Security=true" name="LocalSqlServer" providerName="System.Data.SqlClient" />
</connectionStrings>
Соответственно в копи просто поменял имя базы
<connectionStrings>
<remove name="LocalSqlServer" />
<add connectionString="Server=SERVERBD;Database=Phones_test;Integrated Security=true" name="PhonesConnectionString" providerName="System.Data.SqlClient" />
<add connectionString="Server=SERVERBD;Database=Phones_test;Integrated Security=true" name="PhonesConnectionString2" providerName="System.Data.SqlClient" />
<add connectionString="Server=SERVERBD;Database=Phones_test;Integrated Security=true" name="PhonesConnectionString3" providerName="System.Data.SqlClient" />
<add connectionString="Server=SERVERBD;Database=Phones_test;Integrated Security=true" name="LocalSqlServer" providerName="System.Data.SqlClient" />
</connectionStrings>
Как и где можно еще поменять подключение к базе?