rickyunmellow
New Member
I need to create a custom block in web config as follows: \[code\]<MySettings> <add name="name1" value="http://stackoverflow.com/questions/772474/value1" /> <add name="name2" value="http://stackoverflow.com/questions/772474/value2" /> <add name="name3" value="http://stackoverflow.com/questions/772474/value3" /> ...</MySettings>\[/code\]Ad i understand, i should derive my custom settings class from ConfigurationSection, but i don't know how to make it scalable. I need to add a lot of items to that block, and use it as a key-value pair.I also understand that it's possible to do it all through section, but i need to create a custom one, since key and value fields might not be enough for me and i will need to extend them.Thank you very much for assistance!