一佳一

记录像1+1一样简洁的代码

导航

Config文件简单操作

Posted on 2012-01-04 17:01  一佳一  阅读(212)  评论(0编辑  收藏  举报

aspx.cs文件中写以下内容:
AppSettingsReader  AppRead   =   new   AppSettingsReader();
string url   =   Convert.ToString( AppRead.GetValue( "addressUrl",   typeof(string)));  

config内容中另起一个节点:写以下内容

<appSettings> 
  <add   key= "addressUrl"   value= http://baidu.com/>  

</appSettings> 

这样就可以读取Config文件的内容了。