在.net界面中修改web.config/app.config配置
作者 佚名技术
来源 NET编程
浏览
发布时间 2012-05-19
ue"].InnerText; 14 string[] connStr = System.Text.RegularExpressions.Regex.Split(ConnectionString, ";"); 15 string DataSource = connStr[0].Substring(connStr[0].IndexOf(''='')+1); 16 string UserID = connStr[3].Substring(connStr[3].IndexOf(''='') + 1); 17 string Password = connStr[4].Substring(connStr[4].IndexOf(''='') + 1); 18 string ServerIP = nodeServerIP.Attributes["value"].InnerText; 19 bool check = bool.Parse(nodeAutoUpdate.Attributes["value"].InnerText); 20 21 txtServer.Text = DataSource; 22 txtUserName.Text = UserID; 23 txtPass.Text = Password; 24 txtFilePath.Text = ServerIP; 25 autoCheck.Checked = check; 26 27 string xmlPath = @"C:\Program Files\Exam\AutoUpdater.xml"; 28 if (!File.Exists(xmlPath)) 29 return; 30 XmlDocument xml = new XmlDocument(); 31 xml.Load(xmlPath); 32 XmlNode xmlRoot = xml.DocumentElement; 33 XmlNodeList IPNodeList = xmlRoot.SelectNodes("UpdateServer"); 34 string IP = IPNodeList[0].Attributes["IP"].InnerText; 35 XmlNodeList DirNodeList = xmlRoot.SelectNodes("UpdateFileDir"); 36 string Dir = DirNodeList[0].Attributes["Dir"].InnerText; 37 txtUpdateServer.Text = IP; 38 txtFileDir.Text = Dir; 39 40 } 修改app.config配置
1private void btnOK_Click(object sender, EventArgs e) |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
关于在.net界面中修改web.config/app.config配置的所有评论