ConfigurationManager ConnectionStrings 从哪里获取它的值?

发布于 2024-07-08 16:05:15 字数 466 浏览 13 评论 0原文

在我的 ASP.NET 应用程序中,我有一个 web.config 文件。 在 web.config 文件中,我有一个连接字符串...

<connectionStrings>
    <add name="HRDb" connectionString="xxxxx" providerName="System.Data.SqlClient" />
</connectionStrings>

但是,当我使用 ConfigurationManager.ConnectionStringsp["HRDb"] 检索此值时,我得到的是旧连接字符串,而不是新连接字符串。

ConfigurationManager 还从哪里(除了 web.config)读取连接字符串值?

我正在从 VS.NET 运行应用程序(未部署到 IIS)。

In my ASP.NET application I have a web.config file. In the web.config file I have a connection string...

<connectionStrings>
    <add name="HRDb" connectionString="xxxxx" providerName="System.Data.SqlClient" />
</connectionStrings>

Yet, when I retrieve this value using ConfigurationManager.ConnectionStringsp["HRDb"], I get the my old connection string, not the new one.

Where else (apart from web.config) does the ConfigurationManager read connection string values from?

I'm running the application from VS.NET (not deployed to IIS).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

简单气质女生网名 2024-07-15 16:05:15

我知道出了什么问题了。

所以回答我自己的问题... ConfigurationManager 只从 web.config 读取。

我的问题是该项目被配置为在运行项目时使用 IIS Web 服务器,而不是使用 Visual Studio 开发服务器。 所以我实际上正在运行我的应用程序的旧版本。 愚蠢的。

I figured out what was going wrong.

So to answer my own question... ConfigurationManager only reads from web.config.

My problem was that the project was configured to use an IIS web server when running the project instead of using the Visual Studio Development server. So I was in fact running an old version of my application. Silly.

韶华倾负 2024-07-15 16:05:15

尽管不太可能,您也有可能在当前文件夹上方的文件夹中的“父”web.config 中甚至在 machine.config 中定义了连接字符串。
尝试在 元素之前添加 元素。

It is also possible, although unlikely, that you have a connection string defined in a "parent" web.config in a folder above your current folder or even in machine.config.
Try to add a <clear /> element before the <add> element.

天冷不及心凉 2024-07-15 16:05:15

“旧”值存储在哪里? 它在不同的配置文件中吗? 配置管理器应该只从配置文件中提取,但一个应用程序可以有多个文件。 您的构建过程的一部分是否复制到旧文件中?

Where was the 'old' value stored? Is it in a different config file? The config manager should only pull from the config files, but there can be multiple files for an application. Is part of your build process copying in an old file?

往日 2024-07-15 16:05:15

我也遇到过类似的问题,解决方案是我持有错误的 web.config,该配置是由 Visual Studio 在添加文件等时生成的。

I've had a similar problem, where the solution was that I was holding the wrong web.config, one that was generated by visual studio when adding a file or so.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文