无法在app.config中添加新部分

时间:2010-06-02 10:46:25

标签: c# web-config config app-config

每次我尝试在app.config中添加一个非常基本的部分时,我都会收到以下错误:

Configuration system failed to initialize.

我看过各种各样的文章,但迄今为止没有一篇文章有​​所帮助。 出了什么问题?

修改

  <configSections>
    <section name="Test" type="TestType"/>
  </configSections>

  <Test>  

  </Test>

2 个答案:

答案 0 :(得分:4)

您是否定义了配置节处理程序?这是一个教程:

http://support.microsoft.com/kb/309045

修改(根据您更新的问题) 我建议使用fully qualified assembly name指定类型。

答案 1 :(得分:1)

使用.NET 2.0 / Enterprise http://geekswithblogs.net/akraus1/articles/64871.aspx

读/写App.config