C#のコードを介してweb.configからすべての接続文字列の名前を取得する方法は?
私はこれを試しました:
System.Configuration.Configuration webConfig = System.Web.Configuration.WebConfigurationManager.OpenWebConfiguration("~");
ConnectionStringsSection x = webConfig.ConnectionStrings;
string here = x.SectionInformation.Name;