我想在我的ASP.NET MVC4项目web.config上存储HttpClient BaseAddress Uri。
在哪个部分中添加此配置的正确位置?
答案 0 :(得分:1)
在web.config
中添加<configuration>
<appSettings>
<add key="BaseAddress" value="http://xxx/"/>
</appSettings>
</configuration>
获得这样的价值:
ConfigurationManager.AppSettings["BaseAddress"]