用户登录  |  用户注册
首 页商业源码原创产品编程论坛
当前位置:PB创新网文章中心.Net

ASP.NET中动态修改web.config中的设置项目(CS页代码)

减小字体 增大字体 作者:佚名  来源:本站整理  发布时间:2009-03-12 16:00:26

朋友们可以自行测试,我这里都没有问题了,鳖了一上午的问题总算解决了

using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.xml(标准化越来越近了) ;


namespace WebApplication1
{
/// <summary>
/// Summary description for WebForm1.
/// </summary>
public class WebForm1 : System.Web.UI.Page
{
protected System.Web.UI.WebControls.TextBox TextBox1;
protected System.Web.UI.WebControls.DropDownList DropDownList1;
protected System.Web.UI.WebControls.Button Button1;

public WebForm1()
{
Page.Init += new System.EventHandler(Page_Init);
}

private void Page_Load(object sender, System.EventArgs e)
{
if(!Page.IsPostBack)
{
//打开某文件(假设WEB。CONFIG在根目录中)
string filename=Server.MapPath("/") + @"\web.config";
xml(标准化越来越近了)Document  xml(标准化越来越近了)doc= new xml(标准化越来越近了)Document();
xml(标准化越来越近了)doc.Load(filename);

xml(标准化越来越近了)NodeList topM=xml(标准化越来越近了)doc.DocumentElement.ChildNodes;
foreach(xml(标准化越来越近了)Element element in topM)
{
if(element.Name.ToLower()=="appsettings")
{
xml(标准化越来越近了)NodeList _node=element.ChildNodes;
if ( _node.Count >0 )
{
DropDownList1.Items.Clear();
foreach(xml(标准化越来越近了)Element el in _node)
{
DropDownList1.Items.Add(el.Attributes["key"].Innerxml(标准化越来越近了));
}
}
}
}
}
}

private void Page_Init(object sender, EventArgs e)
{
InitializeComponent();
}

#region Web Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{   
this.Button1.Click += new System.EventHandler(this.Button1_Click);
this.Load += new System.EventHandler(this.Page_Load);

}
#endregion

private void Button1_Click(object sender, System.EventArgs e)
{
string filename=Server.MapPath("/") + @"\web.config";
xml(标准化越来越近了)Document  xml(标准化越来越近了)doc= new xml(标准化越来越近了)Document();
xml(标准化越来越近了)doc.Load(filename);

xml(标准化越来越近了)NodeList topM=xml(标准化越来越近了)doc.DocumentElement.ChildNodes;
foreach(xml(标准化越来越近了)Element element in topM)
{
if(element.Name.ToLower()=="appsettings")
{
xml(标准化越来越近了)NodeList _node=element.ChildNodes;
if ( _node.Count >0 )
{
foreach(xml(标准化越来越近了)Element el in _node)
{
if(el.Attributes["key"].Innerxml(标准化越来越近了).ToLower()==this.DropDownList1.SelectedItem.Value.ToLower())
{
el.Attributes["value"].Value=this.TextBox1.Text;
}
}
}
}
}
xml(标准化越来越近了)doc.Save(filename);
}
}
}

Tags:

作者:佚名

文章评论评论内容只代表网友观点,与本站立场无关!

   评论摘要(共 0 条,得分 0 分,平均 0 分) 查看完整评论

栏目导航

本类热门阅览

相关文章

PB创新网ourmis.com】Copyright © 2000-2009 . All Rights Reserved .
页面执行时间:7,000.00000 毫秒
Email:ourmis@126.com QQ:2322888 蜀ICP备05006790号