gpt4 book ai didi

asp.net - 以编程方式编辑 Web.config

转载 作者:行者123 更新时间:2023-12-02 06:34:13 26 4
gpt4 key购买 nike

以编程方式编辑 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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com