如何使用C#(來自另一個配置Web應用程序的應用程序)以編程方式更改web.copnfig中的應用程序設置? 以下代碼被禁用不起作用,因爲AppSettings [...]是只讀!web.config:使用C#更改應用程序設置
configuration = WebConfigurationManager.OpenWebConfiguration(...);
ConfigurationSectionGroup configurationSectionGroup = (ConfigurationSectionGroup)configuration.GetSectionGroup("applicationSettings");
ConfigurationSection configurationSection = (ConfigurationSection)configurationSectionGroup.Sections[...];
configurationSection.CurrentConfiguration.AppSettings[...].value = value
@:你能告訴我你爲什麼給我-1。因爲我已經測試過它,並且它的工作狀態與app.config很好。 – 2010-10-29 11:56:01