Why is there another section called connectionStrings? I always used appSettings until I noticed this in a new project:
<appSettings>
<add key="SqlConnString" value="server=ABC;database=ABC;uid=A;pwd=B;"/>
</appSettings>
<connectionStrings>
</connectionStrings>
Is there any difference? Any reason why I should use one over the other?
source
share