このコードを介してweb.configファイルを次のように読んでいます
Configuration configuration = WebConfigurationManager.OpenWebConfiguration("~");
AppSettingsSection appSettingsSection = (AppSettingsSection)configuration.GetSection("appSettings");
if (appSettingsSection != null)
{
appSettingsSection.Settings.Remove(key);
config.Save();
}
appSettings
ファイルに存在する場合は正常に機能しweb.config
ます。
私のクエリは、appSettings
タグがweb.config
存在しない場合にファイルに追加することです。