通过httpcontext引用配置管理器

时间:2011-04-28 16:09:13

标签: c# asp.net-mvc httpcontext configurationmanager

如何通过httpcontext引用配置管理器?

由于

2 个答案:

答案 0 :(得分:0)

简单地说:System.Configuration.ConfigurationManager.AppSettings [“”] (当然使用stmt up top for System.Configuration - 并确保你的库有一个参考system.configuration)

答案 1 :(得分:0)

正如亚当指出的那样,使用:

System.Configuration.ConfigurationManager

它是否属于单独项目中的类并不重要。当您从Web项目调用代码时,ConfigurationManager将逻辑应用于您的Web应用程序,而不是包含项目。