ConfigurationManager 类不可用
我无法从 App.Config 文件获取连接字符串。
我是否遗漏了什么?
创建班级后,我将班级移动到某个文件夹中..这是问题吗?不移动班级的解决方案是什么?
I am not able to get the connectionString from App.Config file..
Am I missing something?
after creating the class, I moved the class into some folder..Is that the issue? what is the solution without moving the class?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
添加对 System.Configuration.dll 的引用。
菜单栏->项目->添加参考... -> .NET(选项卡)->系统.配置->好的
Add a reference to
System.Configuration.dll
.Menu Bar -> Project -> Add Reference... -> .NET (Tab) -> System.Configuration -> OK
将对您网站的引用添加为 System.Web.Configuration 和 System.Configuration,它将起作用。
Add references to your website as System.Web.Configuration and System.Configuration and it will work.