的appSettings值我在我的web.config以下:無法讀取的Web.Config
<configuration>
<appSettings>
<add key="PsychMon" value="true"/>
</appSettings>
. . .
</configuration>
我在我的代碼隱藏在下面的代碼:
System.Configuration.Configuration webConfig =
System.Web.Configuration.WebConfigurationManager.OpenWebConfiguration(null) ;
然而,當我看看webConfig,webConfig.AppSettings.Settings.Count = 0。
它爲什麼不讀取應用程序設置?
我想要做的是能夠通過使用獲得的設置:
System.Configuration.KeyValueConfigurationElement psych =
webConfig.AppSettings.Settings["PsychMon"];
我使用C#3.5,VS 2008