获取webconfig配置文件内容
Posted 万万万
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取webconfig配置文件内容相关的知识,希望对你有一定的参考价值。
string ServerUrl= ConfigurationManager.AppSettings["ServerUrl"].ToString();
web.config中的配置为:
<configuration>
<appSettings>
<add key="ServerUrl" value="http://192.168.?.?/?/?" />
</appSettings>
</configuration>
以上是关于获取webconfig配置文件内容的主要内容,如果未能解决你的问题,请参考以下文章
ASP.NET MVC 4中如何读取web.config中的配置