Modify myApp.exe.config from code

  • Thread starter Thread starter Michael
  • Start date Start date
M

Michael

Hi,

I'm wondering if somebody knows how to change the application config file
from code. I just need to change a value in the appSettings section from
"true" to "false", but it doesn't seem like it's easy to do.

Thanks in advance,

Mike
http://www.seeknsnatch.com
 
I guess at the end of the day a config file is just another xml file..
so, if you can give the write persmission to the file for your aspnet
user and use the XML classes to read and write the tags in the config
file... it is quite possible
 
Back
Top