温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:PersonalBlog源码
当前文件:
CommunityServerPersonalBlog/AppCode/Common/ConfigurationSectionHandler.cs[596B,2009-6-12 11:37:08],打开代码结构图
CommunityServerPersonalBlog/AppCode/Common/ConfigurationSectionHandler.cs[596B,2009-6-12 11:37:08],打开代码结构图1using System; 2
using System.Configuration; 3
using System.Collections; 4
using System.Collections.Generic; 5
using System.Collections.Specialized; 6
using System.IO; 7
using System.Web; 8
using System.Web.Caching; 9
using System.Xml; 10
using System.Xml.Serialization; 11
using System.Data; 12
using System.Data.SqlClient; 13
14
namespace NetFocus.Web.Applications.PersonalBlog 15
{ 16
public class ConfigurationSectionHandler : IConfigurationSectionHandler 17
{ 18
public object Create(object parent, object configContext, XmlNode section) 19
{ 20
return section; 21
} 22
} 23
}






}
}