Detailed usage of Web. config in ASP. NET configuration file, asp. netweb. config

Source: Internet
Author: User

Detailed usage of Web. config in ASP. NET configuration file, asp. netweb. config

This article describes the usage of the ASP. NET configuration file Web. config for your reference. The specific analysis is as follows:

First. Understand the Web. config file

Web. config is an XML text file used to store ASP. NET Web application configuration information (for example, the most common settings ASP. NET Web application authentication method), which can appear in every directory of the application. When you use VB. after creating a Web application, a default Web application is automatically created in the root directory by default. config file, including the default configuration settings. All subdirectories inherit its configuration settings. If you want to modify the configuration settings of a subdirectory, you can create a Web. config file under the subdirectory. It can provide configuration information other than the configuration information inherited from the parent directory, or rewrite or modify the settings defined in the parent directory.

Modifications to the Web. config file at runtime can take effect without restarting the Service (note: the exception in <processModel> section ). Of course, the Web. config file can be expanded. You can customize new configuration parameters and write the configuration section handler to process them.

Second web. config configuration file

(Default configuration settings) All the following code should be located in <configuration> <system. web> and </system. for the purpose of learning, the following examples omit the XML mark

1. <authentication> section

Purpose: Configure ASP. NET authentication support (Windows, Forms, PassPort, None ). This element can only be declared at the computer, site, or application level. The <authentication> element must be used with the <authorization> section.
Example:
In the following example, the website is configured for form-based authentication. When a user who does not log on to the website that requires authentication, the webpage automatically jumps to the logon webpage.
Copy codeThe Code is as follows: <authentication mode = "Forms">
<Forms loginUrl = "logon. aspx" name = ". FormsAuthCookie"/>
</Authentication>
The element loginUrl indicates the name of the login webpage, and name indicates the Cookie name.

2. <authorization> section

Purpose: control access to URL resources from clients (for example, Anonymous Users are allowed ). This element can be declared at any level (computer, site, application, subdirectory or page. Must be used with the <authentication> section.
Example: The following example disables access by anonymous users:
<Authorization>
<Deny users = "? "/>
</Authorization>
Note: You can use user. identity. to obtain the authenticated user name. You can use the web. security. formsAuthentication. the RedirectFromLoginPage method redirects authenticated users to the page the user just requested. for specific instances, see:
Forms verification http: // XXXXX/websample/dataauth. aspx

3. <compilation> section

Purpose: configure all compilation settings used by ASP. NET. The default debug attribute is "True". After the program is compiled and delivered, set it to True (the Web. config file is described in detail, and the example is omitted here)

4. <customErrors>

Purpose: Provide information about custom Errors for ASP. NET applications. It is not applicable to errors in XML Web services.
Example: When an error occurs, redirect the webpage to the custom error page.
Copy codeThe Code is as follows: <customErrors defaultRedirect = "ErrorPage. aspx" mode = "RemoteOnly">
</CustomErrors>
The defaultRedirect element indicates the name of the custom error webpage. Mode element: displays custom (friendly) information for users not running on the Local Web server.

5.

Purpose: Configure ASP. net http Runtime Library settings. This section can be declared at the computer, site, application, and subdirectory level.
For example, the maximum size of a file to be uploaded is 4 MB, the maximum time is 60 seconds, and the maximum number of requests is 100.
Copy codeThe Code is as follows:

6. <pages>

Purpose: Identify page-specific configuration settings (such as whether to enable session Status, view status, and whether to detect user input ). <Pages> statements can be made at the computer, site, application, and subdirectory level.
Example: do not check whether there is potential dangerous data in the content entered by the browser (Note: This item is checked by default. If you do not check, 1. encode or verify user input). When you send a page from the client, the encrypted view status is checked to verify that the view status has been tampered with on the client. (Note: This item is not verified by default)
Copy codeThe Code is as follows: <pages buffer = "true" enableViewStateMac = "true" validateRequest = "false"/>

7. <sessionState>

Purpose: Configure session Status settings for the current application (for example, whether to enable session Status and the location where session status is saved ).
Example:
Copy codeThe Code is as follows: <sessionState mode = "InProc" cookieless = "true" timeout = "20"/>
</SessionState>
Note:
Mode = "InProc" indicates that the session status is stored locally (you can also choose to store the session status on a remote server or SAL server or not enable the session status)
Cookieless = "true" indicates that session status is enabled if the user's browser does not support cookies (the default value is False)
Timeout = "20" indicates the number of minutes in which the session can be idle.

8. <trace>

Purpose: configure the ASP. NET tracking service, which is mainly used for program testing to identify errors.
Example: The following is the default configuration in Web. config: <trace enabled = "false" requestLimit = "10" pageOutput = "false" traceMode = "SortByTime" localOnly = "true"/>
Note:
Enabled = "false" indicates that tracing is not enabled; requestLimit = "10" indicates the number of Trace Requests stored on the server.
PageOutput = "false" indicates that the trace output can only be accessed through the tracking utility;
TraceMode = "SortByTime" indicates that trace information is displayed in the order of processing traces.
LocalOnly = "true" indicates that the trace Viewer (trace. axd) is used only for the host Web server.

Third. custom Web. config file configuration section

The configuration section of the custom Web. config file consists of two steps.
First, declare the name of the configuration section and the name of the. NET Framework class that processes the configuration data in the section between the <configSections> and </configSections> labels at the top of the configuration file.
Second, make actual configuration settings for the declared section after the <configSections> area.
Example: Create a storage database connection string
Copy codeThe Code is as follows: <configuration>
<ConfigSections>
<Section name = "etetction" type =" System. Configuration. NameValueFileSectionHandler, System, Version = 1.0.3300.0, Culture = neutral, PublicKeyToken = b77a5c561934e089 "/>
</ConfigSections>
<Deleetask>
<Add key = "scon" value = "server = a; database = northwind; uid = sa; pwd = 123"/>
</AppSettings>
<System. web>
......
</System. web>
</Configuration>

Fourth. access the Web. config file

You can use the ConfigurationSettings. deleettings static string set to access the Web. config file example: Obtain the connection string created in the preceding example.

I hope this article will help you design your asp.net program.


Aspnet read/write configuration file WebConfig

Here is an example:
<Deleetask>
<Add key = "ConnectionString" value = "server = 192.168.19.250; database = hrms_test; uid = pmstest; pwd = pmstest"/>
<Add key = "WebObjectPath" value = "localhost/LMS/Files/"/>
<Add key = "PhysicsObjectPath" value = "E:/Files/"/>
<Add key = "SystemCode" value = "12"/>
<Add key = "OrganizationPath" value = "organization"/>
</AppSettings>
Public static string ConnectionString
{
Get {return System. Configuration. ConfigurationManager. deleetpipeline ["ConnectionString"]. ToString ();}
}

/// <Summary>
/// Path of the organizational structure database
/// </Summary>
Public static string OrganizationPath
{
Get {return System. Configuration. ConfigurationManager. deleetpipeline ["OrganizationPath"]. ToString ();}
}

/// <Summary>
/// System code
/// </Summary>
Public static string SystemCode
{
Get {return System. Configuration. ConfigurationManager. receivettings ["SystemCode"]. ToString ();}
}

/// <Summary>
/// Physical upload path
// <G id = "1"> </G>

Actual Application of the configuration files machineconfig/webconfig of aspnet

ASP. NET Has A Scalability model that can be used to add support for new mobile devices. You can add this support in two ways.

Because different devices usually share the same browser. the Machine in the config file or the server. add the device information in the config file. You only need a small amount of development work to provide device support. The default Machine. config configuration file is stored in the following locations:

Systemroot \ Microsoft. NET \ Framework \ version number \ CONFIG

In this file, each supported browser has a <filter> element. For example, check the section "<! -- Pocket IE -->. This section contains a <case> element with the match attribute. This match attribute is set to the user agent sent from the device.

If the Machine. config file does not match a device, you can modify the adapter file to add a device-specific rendering to the device. The device adapter is provided in the form of a C # source file (. cs) provided along with the product. These device adapter files can be recompiled to add additional device support.

These adapter files are responsible for the actual presentation of specific controls. Each mobile control has a corresponding HTML, WML, and cHTML adapter.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.