以编程方式编辑Web.config文件的好方法是什么?
我调查了System.Xml,但找不到任何明显的答案。
最佳答案
This fellow显示示例代码,如果您仍然想在所有注意事项后继续这样做:
protected void EditConfigButton(object sender, EventArgs e)
{
Configuration objConfig = System.Web.Configuration.WebConfigurationManager.OpenWebConfiguration("~");
AppSettingsSection objAppsettings = (AppSettingsSection)objConfig.GetSection("appSettings");
//Edit
if (objAppsettings != null)
{
objAppsettings.Settings["test"].Value = "newvalueFromCode";
objConfig.Save();
}
}
编辑web.config的一个有效理由是对其进行加密,这就是该文章的内容。
关于asp.net - 以编程方式编辑Web.config,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/270287/