我的web.config文件的AppSettings部分中有一堆密钥。我想使用XML阅读器技术阅读这些应用程序设置的键和值,并在列表框中填充它们。
答案 0 :(得分:9)
最好的方法是反转webconfig值是使用System.Configuration.ConfigurationManager.AppSettings;
从xml阅读器中检索webconfig的值:
private void loadConfig()
{
XmlDocument xdoc = new XmlDocument();
xdoc.Load( Server.MapPath("~/") + "web.config");
XmlNode xnodes = xdoc.SelectSingleNode ("/configuration/appSettings");
foreach (XmlNode xnn in xnodes .ChildNodes)
{
ListBox1.Items.Add(xnn.Attributes[0].Value + " = " + xnn.Attributes[1].Value );
}
}
参考:http://dotnetacademy.blogspot.com/2010/10/read-config-file-using-xml-reader.html
答案 1 :(得分:2)
您可以获取对AppSettings NameValueCollection的引用并按以下方式迭代:
NameValueCollection settings = System.Configuration.ConfigurationManager.AppSettings;
foreach (string key in settings.AllKeys)
{
string value = settings[key];
}
享受!