如何读取来自控制台应用程序的 web.config ?

发布于 2024-12-22 05:15:44 字数 614 浏览 0 评论 0原文

我有 VB.net 控制台应用程序。我想从 web.config 读取 (ConnectionString)。

Web.config 位于我的虚拟 PC 中的特定路径,例如 "C:/mywebConfig"

<add name="MY_DB" connectionString="Data Source=DATASOURCE;Initial Catalog=DB;Persist 

Security Info=False; User ID=***;Password=****;" providerName="System.Data.SqlClient" />

我的代码:

Dim connString As String = String.Empty

connString = ConfigurationManager.ConnectionStrings("MY_DB").ConnectionString

每当我尝试访问它时,我都会收到错误消息设置为对象的实例或类似的东西:)

请帮忙。

我尝试在我的项目中添加 web.config,但仍然收到错误。

I have VB.net console application. I would like to read the (ConnectionString) from a web.config.

Web.config is located at a particular path in my virtual PC, say "C:/mywebConfig"

<add name="MY_DB" connectionString="Data Source=DATASOURCE;Initial Catalog=DB;Persist 

Security Info=False; User ID=***;Password=****;" providerName="System.Data.SqlClient" />

My code:

Dim connString As String = String.Empty

connString = ConfigurationManager.ConnectionStrings("MY_DB").ConnectionString

Whenever I try to access it, i get the error not set to an instance of an object or something like that :)

Help please.

I tried to add the web.config in my Project, but still get the error.

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

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

发布评论

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

评论(3

海拔太高太耀眼 2024-12-29 05:15:44

如果您确实想阅读另一个(网络)应用程序的 app.configweb.config,请查看 ConfigurationManager.OpenMappedExeConfiguration

If you do indeed want to read the app.config or web.config of another (web) app, take a look at ConfigurationManager.OpenMappedExeConfiguration.

穿透光 2024-12-29 05:15:44

正如 Matt 建议的控制台应用程序,您需要包含一个 app.config 文件。为了轻松阅读该文件,您可以引用 System.Configuration 程序集,然后使用 System.Configuration.ConfigurationManager.ConnectionStrings 属性。

例如:

string connectionString = System.Configuration.ConfigurationManager.ConnectionStrings["dbconnectionString"].ConnectionString;

编辑

我刚刚重新阅读了您的帖子,检查您的应用是否有权从 c:\ 驱动器读取 .config 文件可能是个好主意。

As Matt suggested for a console app you need to include a app.config file instead. For easy reading of that file you can reference the System.Configuration assembly and then use the System.Configuration.ConfigurationManager.ConnectionStrings property.

For example:

string connectionString = System.Configuration.ConfigurationManager.ConnectionStrings["dbconnectionString"].ConnectionString;

EDIT

I've just re-read your post and it might be a good idea to check your app has permission to read .config files from the c:\ drive.

陈甜 2024-12-29 05:15:44

web.config 用于 Web 应用程序 - 您将需要一个 app.config 文件。

查看此链接以了解差异:

dotNET - app.config 和 web.config< /a>

还有这个堆栈溢出问题app.config 的用途

web.config is used for web applications - you will need a app.config file.

Have a look at this link for the differences:

dotNET - app.config and web.config

Also this stack overflow question what is app.config for

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