更改 in 的值后ApplicationSettings
,web.config
的数据Settings.Default
不会更新。
我试着打电话
Settings.Default.Reload();
但它不起作用。
只有在 Visual Studio 中打开项目设置后,值才会更新。如何Settings.Default
在运行时更新值?这可能吗?
已解决
好的,值已更新!问题是我试图从 中获取值Settings.Default.Properties["Key"].DefaultValue
,这意味着获取存储在 中的默认值settings.settings
。要获取更新的值,您必须使用Settings.Default.Key
属性。