I had come across an article where you can use the following line to read custom section settings from your config file (where SectionName is the name of your section) in .Net. NameValueCollection myData = (NameValueCollection)System... The advantage of this is your setting doesn't have to be in the app.config file (web.config). You can have a file named mywackyweirdfilename.config, and you use the exact same line. The beauty of it is in the...