自定义WebConfig文件配置节
自定义WebConfig文件配置节分为两步
()在配置文件顶部<configSections>和</configSections>标记之间声明配置节的名称和处理该节中配置数据的NET Framework类的名称
()在<configSections>区域之后为声明的节进行实际的配置设置
示例创建一个节存储数据库连接字符串
<configuration>
<configSections>
<section name=appSettings type=SystemConfiguration
NameValueFileSectionHandler System Version=
Culture=neutral PublicKeyToken=bace/>
</configSections>
<appSettings>
<add key=scon value=server=a;database=northwind;uid=sa;pwd=sa/>
</appSettings>
<systemweb>
…
</systemweb>
</configuration>
返回目录ASPNET项目开发指南
编辑推荐
ASPNET MVC 框架揭秘
ASPNET开发宝典
ASP NET开发培训视频教程