asp.net web config app在母版页中设置为null

时间:2013-09-28 16:09:28

标签: asp.net web-config master-pages configuration-files appsettings

我有一个ASP.NET Web应用程序。在其中一个文件夹中有几个母版页和一个web.config文件。问题是,当我在主页page_load中读取appSettings时,该web.config文件中的所有appSettings都为null。相反,当我尝试读取ConfigurationManager.AppSettings中的所有键时,它包含网站的主要web.config文件appsettings。

1 个答案:

答案 0 :(得分:0)

您可以按如下方式为web.config指定文件夹:

System.Configuration.Configuration c = System.Web.Configuration.WebConfigurationManager.OpenWebConfiguration("~/folder");

阅读:System.Configuration.WebConfigurationManager