在 Windows Server 2003 中通过 configSource 访问 AppSettings 时出现问题
根据 MSDN 文档,configSource
在 Windows Server 2003 SP2 上受支持。但是,当我尝试使用以下语法访问设置时:
System.Configuration.ConfigurationManager.AppSettings["SettingName"];
则返回 null
。但是,同一个应用程序可以在 Windows 7 和 Windows XP 上正常运行(即,AppSettings["SettingName"]
在使用 configSource
时返回预期值)。
configSource
指向的文件肯定存在,因为我将整个应用程序目录从 Windows 7 复制到 Server 2003 进行测试。
有什么想法吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的应用程序清单文件不完整。您需要添加“ assemblyIdentity”元素。详细信息此处。 此处还存在一个 MS Connect 错误。
You have an incomplete application manifest file. You need to add the "assemblyIdentity" element. Details here. There is also an MS Connect bug here.