Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 asp.net 中修改 AppSetting 后,会打开一个弹出窗口以从外包重新加载文件更新。如何停止打开弹出窗口并且在弹出关闭后不重新加载所有页面控制数据。
Try adding this after your save call.
ConfigurationManager.RefreshSection( "appSettings" );
May be u need this