我写一个cs文件,有如下代码:  
   //打开配置文件 
   Configuration config = WebConfigurationManager.OpenWebConfiguration("~"); 
   //获取appSettings节点 
   AppSettingsSection appSection = (AppSettingsSection)config.GetSection("appSettings"); 
   //在appSettings节点中添加元素 
   appSection.Settings.Add("addkey1", "key1's value"); 
   appSection.Settings.Add("addkey2", "key2's value"); 
   config.Save(); 按道理,在运行代码之后可以看见配置文件中有如下改变: 
  <appSettings> 
   <add key="addkey1" value="key1's value" /> 
   <add key="addkey2" value="key2's value" /> 
  </appSettings> 但是,Web.Config中的<appSettings/>却没有任何改变,为什么呢?是我理解错了么?