<!--dynamic Debug compilation
Set compilation debug= "True" to enable ASPX debugging. Otherwise, set this value to
False will improve Run-time performance for this application.
Set compilation debug= "True" to debug symbols (. PDB information)
Insert into the compilation page. Because this will create the execution
A slower large file, you should set this value to true only when debugging, and at all other times set to
False For more information, please refer to the
Debug the document for the ASP.net file.
-->
<compilation
Defaultlanguage= "C #"
Debug= "true"
/>
<!--custom error messages
Set CustomErrors mode= "on" or "RemoteOnly" to enable custom error messages, or set to off to disable custom error messages.
Add <error> tag for each error that you want to handle.
' On ' always displays the custom (friendly) information.
"Off" always displays detailed asp.net error messages.
"RemoteOnly" is only for those that are not running on the local WEB server
The user displays the custom (friendly) information. For security purposes, it is recommended that you use this setting to
The application details are not displayed to the remote client.
-->
<customerrors
Mode= "RemoteOnly"
/>
<!--authentication
This section sets the authentication policy for the application. The possible patterns are "Windows",
"Forms", "Passport" and "None"
"None" does not perform authentication.
"Windows" IIS performs authentication based on the settings of the application
(Basic, concise, or integrated Windows). Anonymous access must be disabled in IIS.
Forms you provide users with a custom form for entering credentials (a Web page), and then
Verify their identities in your application. The user credential token is stored in the Cookie.
"Passport" authentication is performed through a centralized authentication service in Microsoft.
It provides individual logins and core profile services for member sites.
-->
<authentication mode= "Windows"/>
<!--authorization
This section sets the authorization policy for the application. You can allow or deny access to different users or roles
Application resources. Wildcard: "*" means any person, "?" means anonymity
(unauthenticated) user.
-->
<authorization>
<allow users= "*"/> <!--allow all users-->
<!--<allow users= "[Comma separated list of users]"
roles= "[comma-separated role list]"/>
<deny users= "[Comma separated list of users]"
roles= "[comma-separated role list]"/>
-->
</authorization>
<!--application-level trace records
Application-level tracking enables trace log output for each page in the application.
Set trace Enabled= "True" to enable application trace logging. If pageoutput= "true", the
The trace information is displayed at the bottom of each page. Otherwise, you can browse through the WEB application
The "Trace.axd" page in the root directory to view
Application trace log.
-->
<trace
Enabled= "false"
requestlimit= "10"
Pageoutput= "false"
Tracemode= "SortByTime"
Localonly= "true"
/>
<!--session state settings
By default, ASP.net uses cookies to identify which requests belong to a specific session.
If the Cookie is not available, you can track the session by adding the session identifier to the URL.
To disable cookies, set sessionstate cookieless= "true".
-->
<sessionstate
Mode= "InProc"
Stateconnectionstring= "tcpip=127.0.0.1:42424"
sqlconnectionstring= "Data source=127.0.0.1; Trusted_connection=yes "
Cookieless= "false"
Timeout= "20"
/>
<!--globalization
This section sets the globalization settings for the application.
-->
<globalization
Requestencoding= "Utf-8"
Responseencoding= "Utf-8"
/>
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.