作者在 2007-05-16 15:32:00 发布以下内容
近日,在学习web.config,现整理成笔记.有路过\看过的后,如有错误之处或没有写到的方面.请指正.
今天是第一篇:
一、web.config配置文件包含三个可配置区域:<syste.web>、<location>、<appSettings>。
二、<appSettings>区域
1、该区域可以放置用户自定义和应用程序专用的数据。
(1)格式: <appSettings>
<add key="userName" value="lhd"></add>
<add key="conString" value="server=.;uid=sa;pwd=lhd;database=dbNews"></add>
</appSettings>
(2)读取:A:string username=System.Configuration.ConfigurationSettings.AppSettings["userName"].ToString();
B:System.Configuration.AppSettingsReader asreader=new System.Configuration.AppSettingsReader();
string userName=asreader.GetValue("userName",System.Type.GetType("System.String")).ToString();