Updating AppSettings in Web.Config programatically

  • Thread starter Thread starter Rafael Veronezi
  • Start date Start date
R

Rafael Veronezi

I would like to know if there is a way to update the user information,
stored in AppSettings section Web.Config, programatically..
The ConfigurationSettings.AppSettings method just retrieves, but doesn't
save the value...
 
Web.Config is essentially an XML file. So, you can use classes from
System.XML namespace to manipulate it!
 
Back
Top