修改配置文件中的连接字符串

本文介绍了如何使用C#编程语言来读取和修改配置文件中的连接字符串及应用程序设置。包括了针对Web应用(如ASP.NET)和Windows Forms应用的具体实现方式。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

  /// <summary>
    /// 修改配置文件中的连接字符串
    /// </summary>
    /// <param name="server">服务器名称</param>
    /// <param name="userid">用户ID</param>
    /// <param name="password">密码</param>
    /// <param name="database">数据库名称</param>
    protected bool ReadXml(string server, string userid, string password, string database)
    {
        try
        {
            string sqlconstring = "Data Source=" + server + "; User ID=" + userid + "; Password=" + password + "; Initial Catalog=" + database;
            string path = HttpContext.Current.Server.MapPath("~/web.Config");
            System.Xml.XmlDocument doc = new System.Xml.XmlDocument();
            doc.Load(path);
            System.Xml.XmlNode node = doc.SelectSingleNode("configuration/connectionStrings/add");
            System.Xml.XmlElement eml = (System.Xml.XmlElement)node;
            eml.SetAttribute("connectionString", sqlconstring);
            doc.Save(path);
            return true;
        }
        catch
        {
            return false;
        }
    }



----------------------------------------------------------------------------

2012.12.13添加,修改WinForm的配置文件:

 public class AppSettings
    {
        public static string AppConfig()
        {
            return System.IO.Path.Combine(Application.StartupPath, "xx.exe.config");//xx.exe.config实际为app.config生成后文件
        }

        public static string GetValue(string appKey)
        {
            XmlDocument xDoc = new XmlDocument();
            try
            {
                xDoc.Load(AppSettings.AppConfig());
                XmlNode xNode = xDoc.SelectSingleNode("//appSettings");
                XmlElement xElem = (XmlElement)xNode.SelectSingleNode("//add[@key='" + appKey + "']");               
                if (xElem != null)
                    return xElem.GetAttribute("value");
                else
                    return "";
            }
            catch 
            {
                return "";
            }
        }

        public static void SetValue(string AppKey, string AppValue)
        {
            XmlDocument xDoc = new XmlDocument();
            xDoc.Load(AppSettings.AppConfig());
            XmlNode xNode = xDoc.SelectSingleNode("//appSettings");
            XmlElement xElem1 = (XmlElement)xNode.SelectSingleNode("//add[@key='" + AppKey + "']");                    
        
            if (xElem1 != null)
            {
                xElem1.SetAttribute("value", AppValue);
            }
            else
            {
                XmlElement xElem2 = xDoc.CreateElement("add");
                xElem2.SetAttribute("key", AppKey);
                xElem2.SetAttribute("value", AppValue);
                xNode.AppendChild(xElem2);
            }
            xDoc.Save(AppSettings.AppConfig());
        }
    }


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值