Attribute
|
Description
|
|---|
apartmentThreading |
Optional Boolean attribute.
Enables apartment threading for classic ASP compatibility.
This attribute is new in the .NET Framework version 2.0. The default is False.
|
appRequestQueueLimit |
Optional Int32 attribute.
Specifies the maximum number of requests that ASP.NET queues for the application. When there are not enough free threads to process a request, the requests are queued. Incoming requests are rejected with the error "503 - Server Too Busy" when the queue exceeds the limit that is specified in this attribute.
The default is 5000.
Note: |
|---|
For the .NET Framework versions 1.0 and 1.1, the default is
100.
|
|
delayNotificationTimeout |
Optional Int32 attribute.
Specifies the time-out in seconds for delaying notifications.
This attribute is new in the .NET Framework version 2.0.
The default is 5 seconds.
|
Enable |
Optional Boolean attribute.
Specifies whether the application domain (AppDomain) is enabled to accept incoming requests at the current-node and child-node level. If False, the application is effectively turned off.
The default is True.
|
enableHeaderChecking |
Optional Boolean attribute.
Specifies whether ASP.NET should check the request header for potential injection attacks. If an attack is detected, ASP.NET responds with an error.
This attribute is new in the .NET Framework 2.0.
The default is True.
|
enableKernelOutputCache |
Optional Boolean attribute.
Specifies whether output caching is enabled. This attribute is only relevant when Microsoft Internet Information Services (IIS) 6.0 or later is installed. The output caching configuration and type of request determines whether content can be cached.
To cache a response, the following criteria must be met:
Caching must be explicitly enabled by a page directive or by using the caching API.
Caching must have an expiration policy so that the kernel recognizes when to discard the response.
Caching does not have any variable headers or parameters.
Authentication is not required.
The default is True.
|
enableVersionHeader |
Optional Boolean attribute.
Specifies whether ASP.NET should output a version header. This attribute is used by Microsoft Visual Studio 2005 to determine which version of ASP.NET is in use. It is not necessary for production sites and can be disabled.
Note: |
|---|
This attribute is not available in the .NET Framework 1.0.
|
The default is True.
|
executionTimeout |
Optional Int32 attribute.
Specifies the maximum number of seconds that a request is allowed to execute before being automatically shut down by ASP.NET.
This time-out applies only if the debug attribute in the compilation element is False. If the debug attribute is True, to help avoiding application shut-down while you are debugging, do not set this time-out to a large value.
The default is 110 seconds.
Note: |
|---|
In the .NET Framework 1.0 and 1.1, the default is
90 seconds.
|
|
maxRequestLength |
Optional Int32 attribute.
Specifies the limit for the input stream buffering threshold, in KB. This limit can be used to prevent denial of service attacks that are caused, for example, by users posting large files to the server.
The default is 4096 KB. If the threshold is exceeded, a ConfigurationErrorsException error is thrown.
|
maxWaitChangeNotification |
Optional Int32 attribute.
Specifies the maximum number of seconds to wait from the first file change notification before restarting the AppDomain for a new request. Set this attribute to a number that is greater than the length of time to complete any file copy processes. File change notifications are combined based on the value of this attribute and the waitChangeNotification attribute.
This attribute is new in the .NET Framework 2.0.
The default is 0.
|
minFreeThreads |
Optional Int32 attribute.
Specifies the minimum number of free threads to allow execution of new requests. ASP.NET keeps the specified number of threads free for requests that require additional threads to complete processing.
The default is 8.
|
minLocalRequestFreeThreads |
Optional Int32 attribute.
Specifies the minimum number of free threads that ASP.NET keeps available to allow execution of new local requests. The specified number of threads is reserved for requests that are coming from the local host, in case some requests issue child requests to the local host during processing. This helps to prevent a possible deadlock with recursive reentry into the Web server.
The default is 4.
|
requestLengthDiskThreshold |
Optional Int32 attribute.
Specifies the limit for the input stream buffering threshold, in kilobytes. This value should not exceed the maxRequestLength attribute.
This attribute is new in the .NET Framework 2.0.
The default is 80 KB.
|
requireRootedSaveAsPath |
Optional Boolean attribute.
Specifies whether the filename parameter in a SaveAs method must be an absolute path. The ASP.NET process must have permission to create files in the specified location.
This attribute is new in the .NET Framework 2.0.
The default is True.
|
sendCacheControlHeader |
Optional Boolean attribute.
Specifies whether to send a cache control header, which is set to Private, by default. If True, client-side caching is disabled.
This attribute is new in the .NET Framework 2.0.
The default is True.
|
shutdownTimeout |
Optional Int32 attribute.
Specifies the number of minutes that are allowed for the worker process to shut down. When the time-out expires, ASP.NET shuts down the worker process.
This attribute is new in the .NET Framework 2.0.
The default is 90 seconds.
|
useFullyQualifiedRedirectUrl |
Optional Boolean attribute.
Specifies whether client-side redirects are fully qualified using the form "http://server/path", which is required for some mobile controls, or whether relative redirects are sent to the client instead. If True, all redirects that are not fully qualified are automatically converted to fully qualified form.
Note: |
|---|
If this attribute is set to
False, some browsers might encounter issues when loading pages that are in cookieless sessions.
|
The default is False.
|
waitChangeNotification |
Optional Int32 attribute.
Specifies the time, in seconds, to wait for another file change notification before restarting the AppDomain. Set this attribute to a number that is greater than the time between the updates of two file copy change notifications. File change notifications are combined based on the value of this attribute and the maxWaitChangeNotification attribute.
This attribute is new in the .NET Framework 2.0.
The default is 0 seconds.
|