Hi Bede,
You can't write data to the app.config.
If you really need to, you can always load the app.config into an
XmlDocument.
Or go with an enhanced config file handling:
http://www.codeproject.com/csharp/ReadWriteXmlIni.asp
http://www.codeproject.com/csharp/AnyConfig.asp
http://www.codeproject.com/vb/net/ConfigOpt.asp
http://www.codeproject.com/useritems/appdata.asp
Remember that the config file is loaded with start up only.
So new values needs to be read back with System.XML namespace unless you
restart your app.
>I need to be able to read the contents of my app.config file into a
> datagrid and allow the nodes to be edited and saved in the config file
[quoted text clipped - 6 lines]
>
> Thanks in Advance