gpt4 book ai didi

c# - 使用 ConfigurationManager 从 Web.Config 读取 key

转载 作者:IT王子 更新时间:2023-10-29 03:28:36 25 4
gpt4 key购买 nike

我正在尝试从与 Web 层不同的层中的 Web.config 文件中读取 key (相同的解决方案)

这是我正在尝试的:

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

这是我在 Web.config 文件中的 appSettings:

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

当我调试代码时 usernamepassword 只是 null,所以它没有获取键的值。

我在读取这些值时做错了什么?

最佳答案

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

string userName = WebConfigurationManager.AppSettings["PFUserName"]

关于c# - 使用 ConfigurationManager 从 Web.Config 读取 key ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4595288/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com