本文介绍了在3层架构中调用连接字符串的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我创建3层架构Web应用程序,在3个不同的项目中有3层:

i store连接字符串在表示层web.config文件中



i想要访问数据访问层中的连接字符串;



使用此代码;

ConfigurationManager.ConnectionStrings(sqlcon)。ConnectionString



它给出错误

解决方案

i create 3 tier architecture web application with 3 layer in 3 different project:
i store connection string in presentation layer web.config file

i want to access connection string in data access layer;

use this code;
ConfigurationManager.ConnectionStrings("sqlcon").ConnectionString

bt it give error

解决方案


这篇关于在3层架构中调用连接字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 06:27