使用 app.config 文件中的元素

发布于 2024-11-17 09:11:38 字数 491 浏览 3 评论 0原文

目前我的应用程序配置设置如下所示,

<appSettings>
    <add key="ConnectionString" value="server=localhost;user=;port=;" />
    <add key="MS" value="MSr" />
    <add key="MassagesTable" value="Massages" />
  </appSettings>

我想在 "MassagesTable" 下添加一个名为 columnOneColumnTwo 的内部元素。我怎样才能做到这一点,并让他们从代码中读取它。

目前我这样做 ConfigurationManager.AppSettings["ConnectionString"];

感谢您的帮助。

Currently my app config settings are look like this

<appSettings>
    <add key="ConnectionString" value="server=localhost;user=;port=;" />
    <add key="MS" value="MSr" />
    <add key="MassagesTable" value="Massages" />
  </appSettings>

I want to add an inner elements under "MassagesTable" with names columnOne and ColumnTwo. How I can do it , and them to read it from the code .

Currently I do it like ConfigurationManager.AppSettings["ConnectionString"];

Thanks for help.

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

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

发布评论

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

评论(1

柠檬 2024-11-24 09:11:38

您可以在此处找到示例:ASP 中的自定义类型应用程序设置。 NET

基本上,您可以添加任何自定义对象作为设置,只要您使用“类型化设置”和可 XML 序列化的类或具有类型转换器。为此,您应该使用 applicaitonSettings 部分而不是 appSettings

You can find an example here: Custom type application settings in ASP.NET

Basically you can add any custom object as a setting, as long as you used 'typed settings' and the classes XML-serializable or have type converters. You should use applicaitonSettings section instead of appSettings for this.

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