如何使用asp.net的C#代码中的WebConfigurationManager从自定义配置文件(例如abc.config)中读取连接字符串?
Configuration conf = WebConfigurationManager.OpenWebConfiguration("~/abc.config");
这似乎不起作用。
答案 0 :(得分:3)
你可以使用这个技巧: 它是我的自定义方法 - 使用来自web root的webapp.config。 readl所有应用程序设置并返回;
//Read WebAppConfiguration
public static AppSettingsSection ReadAllWebappConfig()
{
string physicalWebAppPath = "";
AppSettingsSection appSettings;
ExeConfigurationFileMap fileMap = new ExeConfigurationFileMap();
physicalWebAppPath = System.Web.Hosting.HostingEnvironment.MapPath("~/webapp.config");
if (System.IO.File.Exists(physicalWebAppPath))
{
fileMap.ExeConfigFilename = physicalWebAppPath;
Configuration config = ConfigurationManager.OpenMappedExeConfiguration(fileMap, ConfigurationUserLevel.None);
appSettings = (AppSettingsSection)config.GetSection("appSettings");
}
else
appSettings = null;
return appSettings;
}
webapp.config示例:
<configuration>
<appSettings>
<add key="WebApp-FixedTopMenu" value="true"/>
<add key="WebApp-FixedTopMenuThickness" value="true"/>
</appSettings>
</configuration>
答案 1 :(得分:1)
我认为你不能用webconfigurationmanager阅读它。您将读取任何xml文件,因为它是一个xml文件
public static string GetSingleValue(string strXPathExpression, string strAttributeName)
{
XmlNode node = GetNode(strXPathExpression);
if (node != null)
{
XmlAttribute attribute = node.Attributes[strAttributeName];
if (attribute != null)
return attribute.Value;
}
return string.Empty;
}