我用asp.net和c#4 我有一個web.config文件如何以編程方式讀取web.config值?
<globalization culture="auto:fr" uiCulture="fr"/>
我想在代碼編程方式獲得一個新的變量此值後面。
var test = .......
如何獲得文化價值?
解決方案感謝您的回答:
Configuration config = WebConfigurationManager.OpenWebConfiguration("/");
GlobalizationSection section = (GlobalizationSection)config.GetSection("system.web/globalization");
OpenWebConfiguration("/"); // Point to Physical path for the Web.Config file (Useful when using Routing).
GetSection("system.web/globalization"); // Get the globalization section within the system.web node.
我厭倦了調試器和我得到globalizationSection = null ...任何想法? – GibboK
@GibboK - 你可以將你正在使用的代碼添加到你的問題中嗎? –
我正在使用您的代碼。 var globalSection = WebConfigurationManager.GetSection(「global」)as GlobalizationSection; – GibboK