C# 中Web.config文件的讀取與寫入
當前位置:點晴教程→知識管理交流
→『 技術文檔交流 』
asp.net2.0新添加了對web.config直接操作的功能。開發(fā)的時候有可能用到在web.config里設置配置文件,其實是可以通過程序來設置這些配置節(jié)的。 asp.net2.0需要添加引用: using System.Web.Configuration; web.config里的配置節(jié): <appSettings> <add key="FilePath" value="g:\Test\WebConfigManager\Upload\" /> <add key="p" value="g:\" /> </appSettings> (1)讀 string filepath = ConfigurationManager.AppSettings["FilePath"]; (2)添加 Configuration config = WebConfigurationManager.OpenWebConfiguration("/WebConfigManager"); AppSettingsSection app = config.AppSettings; app.Settings.Add("p", "p:\\"); config.Save(ConfigurationSaveMode.Modified); (3)修改 Configuration config = WebConfigurationManager.OpenWebConfiguration("/WebConfigManager"); AppSettingsSection app = config.AppSettings; app.Settings["p"].Value = @"g:\"; config.Save(ConfigurationSaveMode.Modified); (4)刪除 Configuration config = WebConfigurationManager.OpenWebConfiguration("/WebConfigManager"); AppSettingsSection app = config.AppSettings; app.Settings.Remove("p"); config.Save(ConfigurationSaveMode.Modified); 注意: (1)asp.net用戶需要有讀取、修改、寫入的權(quán)限。 (2)WebConfigManager是web.config所在的文件夾名。 該文章在 2018/9/8 18:10:51 編輯過 |
關鍵字查詢
相關文章
正在查詢... |