我正试着从网上读取密钥。配置文件在不同的层与web层(相同的解决方案)

以下是我正在尝试的:

string userName = System.Configuration.ConfigurationManager.AppSettings["PFUserName"];
string password = System.Configuration.ConfigurationManager.AppSettings["PFPassWord"];

这是我在网上的appSettings。配置文件:

<configuration>
   ....
   <appSettings>
      <add key="PFUserName" value="myusername"/>
      <add key="PFPassWord" value="mypassword"/>
   </appSettings>
   ....
</configuration>

当我调试代码的用户名和密码只是空,所以它不是得到键的值。

读取这些值有什么问题吗?


当前回答

如果调用方是另一个项目,则应该在调用方项目中编写配置,而不是在被调用方项目中。

其他回答

如果此项目正被另一个项目使用,则会发生此问题。确保将应用程序设置键复制到父项目的app.config或web.config。

尝试使用System.Web.Configuration命名空间中的WebConfigurationManager类。例如:

string userName = WebConfigurationManager.AppSettings["PFUserName"]

它是全路径

System.Configuration.ConfigurationManager.AppSettings["KeyName"]

抱歉,我没有测试这个,但我认为它是这样做的:

var filemap = new System.Configuration.ExeConfigurationFileMap();            
System.Configuration.Configuration config =  System.Configuration.ConfigurationManager.OpenMappedExeConfiguration(filemap, System.Configuration.ConfigurationUserLevel.None);

//usage: config.AppSettings["xxx"]
  var url = ConfigurationManager.AppSettings["ServiceProviderUrl"];