一,duwamish7和asp.net forums
这两者处理方式有相同之处,都是通过实现IConfigurationSectionHandler来实现配置类
配置类的代码如下:
public class DuwamishConfiguration : IConfigurationSectionHandler
{
private static string dbConnectionString ;
private static bool enablePageCache ;

IConfigurationSectionHandler 成员#region IConfigurationSectionHandler 成员
public object Create(object parent, object configContext, System.Xml.XmlNode section)
{
NameValueCollection settings ;
try
{
NameValueSectionHandler baseHandler = new NameValueSectionHandler() ;