如何替换“连接字符串”那是在dll文件中吗?
我的意思是:如何覆盖连接字符串?有可能吗?我在“Site.master”文件中尝试了一些操作,但没有成功;/
谢谢。
i mean: how to override a connectionstring ? it's possible? I tried a few things in the file 'Site.master' but no sucess ;/
thx.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您正在尝试从引用的项目(DAL - 数据访问层)而不是从
可执行项目(网站)
读取app.config文件中的连接字符串。您需要将配置设置连接字符串复制到网站的web.config
文件中。当您运行网站并从 dll 调用数据库时,它将从网站的 web.config 文件中选择连接字符串。
I think you are trying to read a connection string from the app.config file from a referenced project (DAL -- Data Access Layer) instead of from the
executable project (the web site)
. You need to copy the config settings connection string to your website'sweb.config
file.When you run your website and call to the DB from your dll, it will pick the connection string from the web.config file of your website.