码迷,mamicode.com
首页 > Web开发 > 详细

ASP.NET添加、修改、删除web.config配置信息

时间:2015-09-23 15:01:48      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:

1、导入命名空间?

using System.Configuration;

using System.Web.Configuration ;

2、输入代码?

protected void Page_Load(object sender, EventArgs e)

{

if (!Page.IsPostBack)

{

//保存在配置文件中

TextBox1.Text= WebConfigurationManager.AppSettings["xdsj"].ToString();

TextBox2.Text= WebConfigurationManager.AppSettings["zygs"].ToString();

}?

}

protected void Button1_Click(object sender, EventArgs e)

{

string xdsj = TextBox1.Text;

string zygs = TextBox2.Text;

int i;

//保存在配置文件中

Configuration config = System.Web.Configuration.WebConfigurationManager.OpenWebConfiguration(Request.ApplicationPath);

//增加

config.AppSettings.Settings.Add("key", "Name");

//修改

config.AppSettings.Settings["xdsj"].Value = xdsj;

config.AppSettings.Settings["zygs"].Value = zygs;

config.Save();

}

ASP.NET添加、修改、删除web.config配置信息

标签:

原文地址:http://www.cnblogs.com/xusy/p/4832082.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!