首页 > 代码库 > 读取web.config和app.config配置文件

读取web.config和app.config配置文件

  app.config:       <add key="Password" value="http://www.mamicode.com/123456"/>

C#:   string TQpwd = System.Configuration.ConfigurationManager.AppSettings["Password"].ToString();

需要引用  using System.Configuration;

读取web.config和app.config配置文件