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

前端之家收集整理的这篇文章主要介绍了asp.net – 以编程方式编辑Web.config前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
什么是编程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的一个有效的原因是加密它,这是该文章内容.

原文链接:https://www.f2er.com/aspnet/248995.html

猜你在找的asp.Net相关文章