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
bob sacomano Wrote:
29:e Mars 2010
WTF WMD?
Tags