HejCustom sections i Web.config
I asp.net 1.1 gjorde jag göljande:
<code>
<configSections>
<sectionGroup name="myApp">
<section name="mySection"
type="System.Configuration.NameValueFileSectionHandler,System,Version=1.0.3300.0,Culture=neutral,PublicKeyToken=b77a5c561934e089" />
</sectionGroup>
</configSections>
<myApp>
<mySection>
<add key="MyKey" value="olle" />
...
</mySection>
</myApp>
</code>
När jag försöker göra liknande i asp.net 2.0 så verkar den inte känna igen de nya sektionerna...
Nån som har en fungerande lösning på detta?