在web.config 中,如何在appsettings中 根据value 获取对应的key
在web.config 中,如何在appsettings中 根据value 获取对应的key
------解决方案--------------------遍历 System.Configuration.ConfigurationManager.AppSettings进行查找
------解决方案--------------------大概这样子
var myCol=System.Configuration.ConfigurationManager.AppSettings;
for (int i = 0; i < myCol.Count; i++)
{
if(myCol.Get(i)==
""){
return myCol.getKey(i);
}
}