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

问题描述

您好,



我正在创建连接字符串,使用ConfigurationManager属性,



string conStr = ConfigurationManager.ConnectionStrings [MyconnectionString]。ConnectionString;



并在ConnectionString标签的Web.config中对其进行了十进制,但是我收到错误,

在mscorlib.dll asp.net中发生了''system.stackoverflowexception'类型的未处理异常

任何人都可以帮帮我吗?谢谢。

Hello,

I am creating Connection String , by using ConfigurationManager property,

string conStr = ConfigurationManager.ConnectionStrings["MyconnectionString"].ConnectionString;

and have decrared it in Web.config in connectionString tag,but i am getting an error,
"an unhandled exception of type ''system.stackoverflowexception'' occurred in mscorlib.dll asp.net"
Can any one please help me out? Thank You.

推荐答案


这篇关于连接字符串.net4.5中的错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-18 00:09