The configuration appSettings & connectionStrings sections are highly used in our daily application development. < appSettings > < add key = "ApplicationName" value = "ConfigurationShortcutsSample" /> </ appSettings > The way we usually access the values which are stored within these sections is through the ConfigurationManager class when we specify the section key string: string applicationName = ConfigurationManager . AppSettings [ AppSettingsKeys . ApplicationName...