WebConfigurationManager.ConnectionStrings Property
Gets the ConnectionStringsSection data for the current Web application's default configuration.
Assembly: System.Web (in System.Web.dll)
Property Value
Type: System.Configuration.ConnectionStringSettingsCollectionA ConnectionStringSettingsCollection object that contains the contents of the ConnectionStringsSection object for the current Web application's default configuration.
| Exception | Condition |
|---|---|
| ConfigurationErrorsException | A valid ConnectionStringSettingsCollection object could not be retrieved. |
The following example shows how to use the ConnectionStrings property to access configuration information and enumerate the results. To access a specific connection string, use the returned ConnectionStringSettingsCollection with the name of the desired connection string as an indexer.
// Show the use of ConnectionStrings. // If called from within a client application, // the GetWebApplicationSection(string) gets the default section // from the machine.config. // If called from within a Web aplication it gets the // section from the configuration file located at the // application current level. static void GetConnectionStrings() { // Get the connectionStrings key,value pairs collection. ConnectionStringSettingsCollection connectionStrings = WebConfigurationManager.ConnectionStrings as ConnectionStringSettingsCollection; // Get the collection enumerator. IEnumerator connectionStringsEnum = connectionStrings.GetEnumerator(); // Loop through the collection and // display the connectionStrings key, value pairs. int i = 0; Console.WriteLine("[Display connectionStrings]"); while (connectionStringsEnum.MoveNext()) { string name = connectionStrings[i].Name; Console.WriteLine("Name: {0} Value: {1}", name, connectionStrings[name]); i += 1; } Console.WriteLine(); }
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.