WebControlsSection Class
Configures the webControls section. This class cannot be inherited.
Assembly: System.Web (in System.Web.dll)
The WebControlsSection class provides a way to programmatically access and modify the webControls section of a configuration file.
Note: |
|---|
ASP.NET provides a shared location for the client script files, where they can be accessed from multiple pages and across applications. The WebControlsSection can read and write information from and to the related section of the configuration file according to the section property AllowDefinition whose value is Everywhere. |
| Topic | Location |
|---|---|
| How to: Secure Connection Strings When Using Data Source Controls | Building ASP .NET Web Applications |
| How to: Secure Connection Strings When Using Data Source Controls | Building ASP .NET Web Applications |
| How To: Secure Connection Strings when Using Data Source Controls (Visual Studio) | Building ASP .NET Web Applications in Visual Studio |
The following code example shows how to obtain the WebControlsSection object from the configuration file associated with an existing Web application.
' Get the Web application configuration. Dim configuration _ As System.Configuration.Configuration = _ WebConfigurationManager.OpenWebConfiguration( _ "/aspnetTest") ' Get the <webControls> section. Dim webControlsSection _ As WebControlsSection = _ CType(configuration.GetSection( _ "system.web/webControls"), WebControlsSection) ' Read the client script location. Dim clientScriptLocation As String = _ webControlsSection.ClientScriptsLocation Dim msg As String = _ String.Format( _ "Client script location: {0}" + _ ControlChars.Lf, clientScriptLocation) Console.Write(msg)
System.Configuration.ConfigurationElement
System.Configuration.ConfigurationSection
System.Web.Configuration.WebControlsSection
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.
Note: