通过 httpcontext 引用配置管理器
如何通过 httpcontext 获取配置管理器的引用?
谢谢
How can i get reference to the configuration manager via httpcontext?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何通过 httpcontext 获取配置管理器的引用?
谢谢
How can i get reference to the configuration manager via httpcontext?
Thanks
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
正如 Adam 所指出的,使用:
是否在单独项目的类中并不重要。当您从 Web 项目调用代码时,ConfigurationManager 逻辑将应用于您的 Web 应用程序,而不是包含的项目。
As pointed out by Adam, use:
It doesn't matter if it is in a class in a separate project. When you call the code from your web project, the ConfigurationManager will logic will be applied to your web app, not the containing project.
简单地说:System.Configuration.ConfigurationManager.AppSettings[""]
(当然,在 System.Configuration 的顶部使用 using stmt - 并确保您的库有对 system.configuration 的引用)
simply: System.Configuration.ConfigurationManager.AppSettings[""]
(of course with a using stmt up top for System.Configuration - and make sure your library has a ref to system.configuration)