从web.config读取连接字符串

如何从web.config文件中读取连接字符串到类库中的公共类。 我试过了

WebConfigurationManager

ConfigurationManager

但这些在课堂图书馆中是不被认可的


添加System.Configuration作为参考。

由于一些奇怪的原因,它不是默认包含的。


您需要添加对System.Configuration的引用,然后使用:

System.Configuration.ConfigurationManager.
    ConnectionStrings["connectionStringName"].ConnectionString;

C#

// Add a using directive at the top of your code file    
using System.Configuration;

// Within the code body set your variable    
string cs = ConfigurationManager.ConnectionStrings["connectionStringName"].ConnectionString;

VB

' Add an Imports statement at the top of your code file    
Imports System.Configuration

' Within the code body set your variable    
Dim cs as String = ConfigurationManager.ConnectionStrings("connectionStringName").ConnectionString
链接地址: http://www.djcxy.com/p/42587.html

上一篇: Read connection string from web.config

下一篇: Java equivalent to #region in c#