我可以通过URL包含web / app.config

时间:2014-02-20 12:02:29

标签: c# .net web-config

是否可以在C#.net中包含主机的app.config?所以我可以加载不同的连接字符串和其他选项?

喜欢

if (host == "stackoverflow"){
   //inlcude stackoverflow.config
}else{
   //include  othersite.config
}

1 个答案:

答案 0 :(得分:0)

可以加载配置文件。你应该看看ConfigurationManager documentation

但是如果你想使用不同的连接字符串,可以像这样使用它的名字。见Retrieving Connection Strings at Run Time