Reputation: 29
Can I have more than one applicationsettings tag inside a Web.Config file? What is the best way to store multiple connection strings inside a web config file?
Upvotes: 0
Views: 62
Reputation: 2840
Yes, you can have more than one applicationsettings in your web.config, and you should store your connectionstrings in <connectionstrings>
Upvotes: 1