在 ASP.NET 中访问 app.config

发布于 2024-11-07 04:11:56 字数 611 浏览 0 评论 0原文

我正在使用 app.config 文件从中读取数据。 我将 app.config 文件加载为:

string app_path = HttpContext.Current.Server.MapPath("app.config");
xmlDoc.Load(app_path);

string image_path = ConfigurationManager.AppSettings["Test1"];

并且我想获取“Test1”的值。但 test1 的值变为“null”.. 我如何从 app.config 文件中获取“test1”的值。 我创建了 app.config 文件:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <appSettings>
    <add key="Test1" value="My value 1" />
    <add key="Test2" value="Another value 2" />
  </appSettings>
</configuration>

请帮助我..

I am using app.config file to read data from it..
I am loading the app.config file as:

string app_path = HttpContext.Current.Server.MapPath("app.config");
xmlDoc.Load(app_path);

string image_path = ConfigurationManager.AppSettings["Test1"];

and i want to get the value of "Test1". But the value of test1 is comming "null"..
how can i get the value of "test1" from app.config file..
i created the app.config file as:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <appSettings>
    <add key="Test1" value="My value 1" />
    <add key="Test2" value="Another value 2" />
  </appSettings>
</configuration>

please help me out..

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

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

发布评论

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

评论(3

﹂绝世的画 2024-11-14 04:11:56

Web.config:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <appSettings>
    <add key="Test1" value="My value 1" />
    <add key="Test2" value="Another value 2" />
  </appSettings>
</configuration>

代码:

string image_path = ConfigurationManager.AppSettings["Test1"];

Web.config:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <appSettings>
    <add key="Test1" value="My value 1" />
    <add key="Test2" value="Another value 2" />
  </appSettings>
</configuration>

Code:

string image_path = ConfigurationManager.AppSettings["Test1"];
肥爪爪 2024-11-14 04:11:56

在 ASP.NET 应用程序中,默认配置文件名为 web.config。这是您应该遵守的约定,它允许您轻松使用 ConfigurationManager 访问配置设置。

我建议看看 http://en.wikipedia.org/wiki/Web.config 作为学习 ASP.NET 域中基本 .NET 应用程序配置细节的起点。

您可以通过设置要覆盖的配置节的 file 属性将配置文件链接在一起:http://www.codeproject.com/KB/dotnet/appsettings_fileattribute.aspx

In ASP.NET applications, the default configuration file is named web.config. This is a convention you should probably stick to, that allows you to easily use the ConfigurationManager to access configuration settings.

I suggest having a look at http://en.wikipedia.org/wiki/Web.config as a starting point to learn the ins and outs of basic .NET application configuration in the ASP.NET domain.

You can link configuration files together, by setting the file attribute of configuration sections you want to override: http://www.codeproject.com/KB/dotnet/appsettings_fileattribute.aspx

我ぃ本無心為│何有愛 2024-11-14 04:11:56

如果您想在 Web 应用程序中使用 ConfigurationManager.AppSettings,则必须将 AppSettings 部分放入 web.config 中。

If you want to use ConfigurationManager.AppSettings inside a web application, you have to put your AppSettings section in web.config.

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