我有以下网络配置文件。我在从“AppName.DataAccess.ConnectionString”键中检索值时遇到了一些困难。我知道我可以将它移动到 AppSetting 块并真正轻松地获取它,但我不想复制密钥(从而使我已经混乱的 web.config 文件变得混乱)。另一个 DLL(我没有源代码)使用这个块,既然它已经存在,为什么不使用它。
我是一名 C# 开发人员(使用 .Net 3.5),这是 VB 代码(使用 .Net 1.1 不少于)所以我已经在一个陌生的地方(我的安全分号在哪里?)。谢谢你的帮助!!
<?xml version="1.0"?>
<configuration>
<configSections>
<section name="AppNameConfiguration" type="AppName.SystemBase.AppNameConfiguration, SystemBase"/>
</configSections>
<AppNameConfiguration>
<add key="AppName.DataAccess.ConnectionString" value="(Deleted to protect guilty)" />
</AppNameConfiguration>
<appSettings>
...other key info deleted for brevity...
</appSettings>
<system.web>
...
</system.web>
</configuration>