Tagged Questions

5
votes
3answers
20k views

C# ConfigurationManager.GetSection could not load file or assembly

I am stuck! this seems really daft but I can not see where I am going wrong. I am creating a 2.0 C# ASP.NET website. I am trying to use a custom section in the web.config file with: ...
2
votes
1answer
70 views

How to read custom config section in app.config in c#

I want to read following custom section from app.config: <StartupFolders> <Folders name="a"> <add folderType="Inst" path="c:\foo" /> <add folderType="Prof" ...
1
vote
1answer
140 views

app.settings custom configuration problem

I've attempted my first go round with a custom configuration in app.settings. When I try to call the config I get "Unrecognized configuration section servers". What am I doing wrong? <?xml ...
0
votes
0answers
35 views

Using differents versions custom configsections in .NET

I have any component (assembly) in Custom Framework Company, that uses a custom configsection. Now, I'm migrating to new version. In machine.config there was a custom config section that use the ...
0
votes
2answers
165 views

C# configSections “Sections must only appear once per config file.”

I want to create a "List" of clientUsers that contains many of clientUser <configuration> <configSections> <sectionGroup name="clientUsers"> ...