I'm using a resource file to store the database connection string. This was successfully deployed in {SharePointRoot}\Resources\. I tried editing the file and change some of the values just to test it but it's not getting the current value on the XML file instead it's still using the old value. I searched for any resource file in case it was saved somewhere else but I found none. Why is my web part still using the old connection string? I refreshed the page several times.
Old value:
<data name="HBConnectionString" xml:space="preserve">
<value>Data Source=DevServer;Initial Catalog=db;user=user;password=pwd;Pooling=false;</value>
<comment>HelpBox connection string</comment>
</data>
new value:
<data name="HBConnectionString" xml:space="preserve">
<value>Data Source=TestServer;Initial Catalog=db;user=user;password=pwd;Pooling=false;</value>
<comment>HelpBox connection string</comment>
</data>