本文介绍了我该如何处理错误信息的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在Visual Basic中运行我的项目时,我在调试期间收到错误消息:

参数eception未被用户代码处理



错误是指这段代码:

Sql conn = new SqlConnection(ConfigurationManager.ConnectionStrings [RegistrationConnectionString] .ConnectionString);



请帮忙

When running my project in visual basic I get the error message during debugging:
Argument eception was unhandled by user code

The error refers to this code:
Sql conn = new SqlConnection(ConfigurationManager.ConnectionStrings["RegistrationConnectionString"].ConnectionString);

Please help

推荐答案


<add name="DBnmae" connectionstring="your connection string" providername="System.Data.sqlClient"></add>



您应该使用providerName而不是Provider。

希望这有助于


You should use "providerName" not "Provider".
Hope this helps


这篇关于我该如何处理错误信息的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-03 09:22