使用 app.config 文件中的元素
目前我的应用程序配置设置如下所示,
<appSettings>
<add key="ConnectionString" value="server=localhost;user=;port=;" />
<add key="MS" value="MSr" />
<add key="MassagesTable" value="Massages" />
</appSettings>
我想在 "MassagesTable"
下添加一个名为 columnOne
和 ColumnTwo
的内部元素。我怎样才能做到这一点,并让他们从代码中读取它。
目前我这样做 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在此处找到示例: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 ofappSettings
for this.