I\'m in a ASP.NET project where I need to give several parameters to the administrator that is going to install the website, like:
AllowUserToChangePanelLayo
You may also put your configurations in a settings file. In your project, open Properties and go to Settings which looks like so
To access the values in your code, use Properties.Settings.YourSettingName;
Properties.Settings.YourSettingName;
Use Properties.Settings.Default.Reload(); to refresh your settings during runtime
Properties.Settings.Default.Reload();