ASP.NET 中的配置管理器问题

发布于 2024-11-02 04:36:07 字数 558 浏览 3 评论 0原文

我正在尝试获取添加到 web.config 文件中的应用程序设置中的密钥:

<add key="ComponentXML" value="~/App_Data/Components.XML"/>

并且我正在尝试以这种方式检索该值:

           string componentsXMLFile = "ComponentXML";
     ConfigurationManager.AppSettings[componentsXMLFile ]);

但它很吓人:

Could not find a part of the path 'c:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\~\App_Data\Components.XML

这根本不是我的项目文件夹的一部分,它指的是其他东西

我该如何解决这个问题?过去三个小时我一直被这个问题困扰。

请帮助我

谢谢期待

I'm trying to get the key that was added to the app settings in web.config file :

<add key="ComponentXML" value="~/App_Data/Components.XML"/>

and i'm trying to retrieve the value in this manner:

           string componentsXMLFile = "ComponentXML";
     ConfigurationManager.AppSettings[componentsXMLFile ]);

But it is freaking out:

Could not find a part of the path 'c:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\~\App_Data\Components.XML

which is not at all part of my project folder, it is referring to something else

how can i solve this ? I'm stuck with this problem from past 3 hours.

Please help me

Thanks in anticipation

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

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

发布评论

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

评论(1

空名 2024-11-09 04:36:07

这段代码驻留在 asp.net 网页中,这一行对我来说很有效。

Server.MapPath(ConfigurationManager.AppSettings[componentsXMLFile]);

我从此处找到了答案的来源 经过更多谷歌搜索后。

谢谢

This code resides in the asp.net web page and this line did the trick for me.

Server.MapPath(ConfigurationManager.AppSettings[componentsXMLFile]);

I found the source of answer from here after some more googling.

Thanks

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