带有Microsoft SQL Server数据库的C#winform应用程序

时间:2017-04-08 15:30:58

标签: c# .net sql-server winforms

我在C#中开发了一个小应用程序,我在其中使用SQL Server数据库,但是当我运行我的应用程序时出现此错误:

  

未处理的类型' System.Configuration.ConfigurationErrorsException'发生在System.Configuration.dll

中      

其他信息:配置系统无法初始化

任何人都可以帮我修复此错误吗?

The code of my save button shown in this image where exception error occurred 和 我的app.config。文件是:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <startup> 
        <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
    </startup>
  <connectionstring>
    <add name="dbx" connectionstring="Data Source=JAWADKHAN-PC;Initial Catalog=jawad;Integrated Security=True" Providername="System.Data.SQLClient">
    </add>
      </connectionstring>
</configuration>

1 个答案:

答案 0 :(得分:0)

检查您的app.config文件。 在配置部分后添加configSections。 改变顺序如:

 <configuration>
     <configSections>
      ....
     </configsections>
     .
     .

如果这不能解决您的问题,请发布app.config文件进行审核。