The ConnectionString property has not been initialized

问题描述

我app.config中的代码是<?xmlversion="1.0"encoding="utf-8"?><configuration><startup><supportedRuntimeversion="v4.0"sku=".NETFramework,Version=v4.0,Profile=Client"/></startup><appSettings><addkey="datasource"value="server=192.168.2.200;database=WHSHDB;uid=developer;pwd=dev"/></appSettings></configuration>引用的代码是DimconstrAsString=System.Configuration.ConfigurationSettings.AppSettings("datasource")DimconAsNewSqlConnection(constr)为啥运行的时候老是报RT的警呢?

解决方案

解决方案二:
自己顶,跪等高人啊
解决方案三:
看上去好像没错。。你把连接字符串放在connectionStrings节点下看看
解决方案四:
DimconstrAsString=System.Configuration.ConfigurationSettings.AppSettings("datasource")下面这种方式得的吧----------------->DimconstrAsString=System.Configuration.ConfigurationManager.AppSettings("datasource")

时间: 2024-09-20 03:27:24

The ConnectionString property has not been initialized的相关文章

SqlConnection的dispose和close方法差异和using的使用选择

Close() and Dispose() are basically the same thing on an ADO.NET connection object for providers shipped by Microsoft, and typically for 3rd party providers as well (haven't seen one that does it differently, but you never know :). The only differenc

SQL to Excel 的应用

excel 参考网上资料,自己做的SQL to Excel  事例,    1.需要先安装MS的事例数据库:pubs    2.预先已有的c:\temp\test.xls(macro代码已写好,包含'sheet1'和'people'两张sheet)    3.执行此SQL,可把数据导入test.xls    4.打开test.xls,按按钮,可产生数据的图表 SQL:-----------------------------------------------------------------

浅谈如何建立三层体系结构的ASP应用程序

程序|体系 随着互连网应用的深入和发展,三层体系结构的应用模式也得到更多人的青睐.本文介绍了三层结构应用程序的概念和优点,并结合一个实例介绍了如何建立三层结构的ASP应用程序. 一.两层结构的ASP应用有何缺点在Browser/Server 应用程序开发领域,微软公司的IIS/ASP以其强大的功能,良好的扩展能力,及与其它微软产品的一致性,迅速地流行起来.它能使一个具有VB/VC经验的程序员,很快地成为一个Web程序员,开发出看上去非常专业的应用.但是,ASP有一个天生的缺点,就是ASP代码和H

建立三层结构的ASP应用程序

程序 本文介绍了三层结构应用程序的概念和优点,并结合一个实例介绍了如何建立三层结构的ASP应用程序. 一.两层结构的ASP应用有何缺点 在Browser/Server 应用程序开发领域,微软公司的IIS/ASP以其强大的功能,良好的扩展能力,及与其它微软产品的一致性,迅速地流行起来.它能使一个具有VB/VC经验的程序员,很快地成为一个Web程序员,开发出看上去非常专业的应用.但是,ASP有一个天生的缺点,就是ASP代码和HTML代码是混在一起的,ASP程序员既需要考虑与数据库打交道,需要关心如何

Paging Database Results in ASP.NET (Prt1)(转载:http:

For More Information on ASP.NET This article examines how to create a databound listbox using ASP.NET. For more information on ASP.NET be sure to check out the articles in the ASP.NET Article Index. The code in this article is based on the Beta 2 ver

浅谈如何建立三层体系结构的ASP应用程序(转)

程序|体系 随着互连网应用的深入和发展,三层体系结构的应用模式也得到更多人的青睐.本文介绍了三层结构应用程序的概念和优点,并结合一个实例介绍了如何建立三层结构的ASP应用程序.   一.两层结构的ASP应用有何缺点  在Browser/Server 应用程序开发领域,微软公司的IIS/ASP以其强大的功能,良好的扩展能力,及与其它微软产品的一致性,迅速地流行起来.它能使一个具有VB/VC经验的程序员,很快地成为一个Web程序员,开发出看上去非常专业的应用.但是,ASP有一个天生的缺点,就是ASP

Connection Pooling

connection Connection Pooling for the OLE DB .NET Data Provider This is preliminary documentation and subject to change. Send feedback on this topic. The OLE DB .NET Data Provider automatically pools connections using OLE DB session pooling. Connecti

Paging Database Results in ASP.NET (Prt1)(转载:http://www.4guysfromrolla.com/)[登级:初级]

asp.net For More Information on ASP.NET This article examines how to create a databound listbox using ASP.NET. For more information on ASP.NET be sure to check out the articles in the ASP.NET Article Index. The code in this article is based on the Be

.net 中的SqlConnection连接池机制详解_实用技巧

正确的理解这个连接池机制,有助于我们编写高效的数据库应用程序. 很多人认为 SqlConnection 的连接是不耗时的,理由是循环执行 SqlConnection.Open 得到的平均时间几乎为0,但每次首次open 时,耗时又往往达到几个毫秒到几秒不等,这又是为什么呢? 首先我们看一下 MSDN 上的权威文档上是怎么说的 Connecting to a database server typically consists of several time-consuming steps. A