Xem thao tác với app.config C#
Ví dụ hàm sửa appSettings:
- public static void EditAppSetting(string key, string value)
- {
- System.Configuration.Configuration config = System.Web.Configuration.WebConfigurationManager.OpenWebConfiguration("~/");
- config.AppSettings.Settings[key].Value = value;
- config.Save(ConfigurationSaveMode.Modified);
- ConfigurationManager.RefreshSection("appSettings");
- }
Note: Nếu gặp lỗi Failed to map the path thì xem Khắc phục lỗi 'Failed to map the path' khi load file web.config
Không có nhận xét nào :
Đăng nhận xét