当前位置导航:炫浪网>>网络学院>>网页制作>>ASP.NET教程

[dotNET]如何利用ConfigurationSettings.AppSettings.GetValues读取配置文件中多个同Key的value


编写者:郑昀@Ultrapower默认情况下,string[] strArray = System.Configuration.ConfigurationSettings.AppSettings.GetValues("Uri");是无法读取配置文件中多个同Key的value的。如下所示的配置: 用MSDN告诉我们的GetValues是读不到的,只能读到最后一个value。 http://www.codeproject.com/dotnet/namevaluemultiple.asp告诉我们,只有这么做才可以:第一步:单独建立一个类库MultipleSectionHandler,把NameValueMultipleSectionHandler.cs加进去,并将MultipleSectionHandler.csproj加入到我们的工程中; 第二步:编译MultipleSectionHandler,生成MultipleSectionHandler.dll; 第三步:将WebApp应用的Web.config文件中加入
表明对于appSettings的读取将采用我们自己的MultipleSectionHandler处理。 第四步:这时候就可以针对Web.config中的: 通过string[] strArray = System.Configuration.ConfigurationSettings.AppSettings.GetValues("Uri");来读取了。
相关内容
赞助商链接