ConfigurationManager ConnectionStrings 从哪里获取它的值?
在我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我知道出了什么问题了。
所以回答我自己的问题... 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.
尽管不太可能,您也有可能在当前文件夹上方的文件夹中的“父”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.“旧”值存储在哪里? 它在不同的配置文件中吗? 配置管理器应该只从配置文件中提取,但一个应用程序可以有多个文件。 您的构建过程的一部分是否复制到旧文件中?
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?
我也遇到过类似的问题,解决方案是我持有错误的 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.