我有這樣的代碼在我的web.config文件:在一個web.config Retriving設置<configSections>
<configSections>
<section name="myWebAppSettings" type="System.Configuration.SingleTagSectionHandler" />
</configSections>
<myWebAppSettings isTestEnvironment="true"/>
我需要從Global.asax
找回我的價值isTestEviroment
在我使用的那一刻沒有成功:
bool isTestEnvironment = ConfigurationManager.AppSettings.GetValues["isTestEnvironment"];
我在做什麼錯在這裏? 注意:我不認爲我的Web.Config文件是正確的,所以如果我沒有正確寫入,請隨時更改它。感謝您的幫助!
在哪種方法你想讀的設置? (會話開始,應用程序開始)? – sll
in Application_Error – GibboK