Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
3answers
12k views

Custom app.config Config Section Handler

What is the correct way to pick up the list of "pages" via a class that inherits from System.Configuration.Section if I used a app.config like this? <?xml version="1.0" encoding="utf-8" ?> ...
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: ...
4
votes
1answer
5k views

log4net configuration exception

I am using log4net for logging. My logging configuration is stored in a separate file. Web.Config:ConfigSections <section name="log4net" ...
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" ...
2
votes
3answers
1k views

Get value from web.config applicationSettings into ASP.NET markup

I might be completely off track by now, so I will just ask this here so someone can help me. What I want to do, is to insert a value from my web.config, stored in an applicationSettings area, into ...
1
vote
1answer
139 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 ...
1
vote
3answers
449 views

What is the purpose of configSections?

I've done a little research and ran across this: http://msdn.microsoft.com/en-us/library/ms228245.aspx So if I'm understanding that correctly, ultimately what this is doing is including some .dlls ...
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
0answers
19 views

How to use sections from app.config in .cs file

<Sections> <Group1> <add key="1",value="One"> <add key="2",value="Two"> </Group1> <Group2> <add key="3",value="Three"> <add key="4",value="Four"> ...
0
votes
2answers
164 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"> ...
0
votes
1answer
189 views

.NET Console Application configSections

I have a shared class library which is being used by an asp.net web application and a console application. In the web.config of my web app, I have a sectionGroup within the configSections declared, ...
0
votes
1answer
481 views

Problem Implementing custom configuration section handler

All I have put together a custom configuration section handler (vb.net), based on gleanings from a variety of sources (including stackOverlflow), however when I come to use it, I get the following ...