asp.net写入web.config
Posted xyzqiang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了asp.net写入web.config相关的知识,希望对你有一定的参考价值。
public static void SetAppKey(string keyName, string keyValue)
Configuration config = System.Web.Configuration.WebConfigurationManager.OpenWebConfiguration(System.Web.HttpContext.Current.Request.ApplicationPath);
AppSettingsSection appSection = (AppSettingsSection)config.GetSection("appSettings");
if(appSection.Settings[keyName] != null)
appSection.Settings[keyName].Value = keyValue;
config.Save();
以上是关于asp.net写入web.config的主要内容,如果未能解决你的问题,请参考以下文章
ASP.NET中的Webconfig 和 Global.asax区别
将 ASP.Net System.Net.Mail 设置移动到 Web.config