为asp.net程序添加自定义配置区域
摘要:
我们通常把诸如sql的connection string之类的配置信息保存在web.config的AppSettings部分,以方便程序的分发,并且可以通过以下方法在程序中获得:
string sqlStr = System.Configuration.ConfigurationSettings.AppSettings["ConnectionString"];
对于结构比较复杂的自定义配置,可以通过实现IConfigurationSectionHandler接口来实现这种机制。 阅读全文
posted @ 2004-11-02 21:41 Roger Wo 阅读(2897) 评论(6) 推荐(0) 编辑