I have an ASP.NET application and need to store some settings.
The settings are, among other things, titles on pages shown in my application. The titles are changed on a regular basis (every week or so) and I'm wondering on how to do this the smart way:
Save the settings in the
web.config
(slow read time, and application has to be restarted to detect changes).Save the settings in a database.
My own XML file (such as a custom configuration section in its own XML file).
I'm looking for anything that could point me in a better direction.
What would you do?