我正在使用C#2010。由于以下错误,我的网站无法运行:


  名称“ WebConfigrationManager”在当前不存在
  上下文。


尽管我包括了using System.Web.Configuration;,但错误所指向的代码行是这样的:

String connectionString = WebConfigrationManager.ConnectionStrings["costr"].ConnectionString;

最佳答案

这已经存在于system.web.dll中,只需添加名称空间
使用System.Web.Configuration

关于c# - Web配置管理器,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8727201/

10-11 12:07