Lägg till appSettings värden

följande visar hur man kan lägga till appSettings till genom code behind.


Configuration config = ConfigurationSettings.OpenWebConfiguration("~");

AppSettingsSection appSettingsSection = config.AppSettings;

appSettingsSection.Settings["MinNyckel"] = "Värdet som ska sparas!";

config.Save();

Comments

WTF WMD?