You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: support/developer/dotnet/framework/installation/deploy-applications.md
+8-3Lines changed: 8 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,7 @@ For more information about how to enable and disable ASP.NET functionality for v
43
43
44
44
## Custom error messages
45
45
46
-
Many sites change IIS default error message to display a user-friendly page or to notify an administrator. If a server that runs IIS 5.0 has custom error messages, and an ASP Web application that is built on .NET Framework is deployed to that server, errors in the ASP.NET application don't use IIS 5.0 custom error messages unless the application is configured to do this.
46
+
Many sites change IIS default error message to display a user-friendly page or to notify an administrator. By default, if errors occur in an ASP.NET application that's built on .NET Framework and deployed to a server that has IIS 5.0 custom error messages, the errors don't trigger the custom messages. However, you can configure the application to return the custom messages.
47
47
48
48
For more information about how to configure custom error messages for ASP applications that are built on .NET Framework, see [Create custom error reporting pages in ASP.NET by using Visual Basic .NET](/troubleshoot/developer/webapps/aspnet/development/custom-error-reporting-page).
49
49
@@ -53,7 +53,7 @@ The most common way to override system defaults for a whole ASP.NET application
53
53
54
54
- Add the `<location>` configuration element to the `Machine.config` file or the `Web.config` file
55
55
56
-
- Add additional`Web.config` files to subfolders
56
+
- Add more`Web.config` files to subfolders
57
57
58
58
For more information about how to apply changes that affect specific applications and directories, see [Make application and directory-specific configuration settings in an ASP.NET application](/troubleshoot/developer/webapps/aspnet/development/application-directory-configuration).
59
59
@@ -87,7 +87,12 @@ For more information, see [Deploy an ASP.NET web application by using Xcopy depl
87
87
88
88
## Set up multiple server ASP.NET web applications and web services
89
89
90
-
For most uses of ASP.NET, a single server can handle all requests quickly. However, many environments require that you deploy multiple servers to handle consistently high traffic volumes, support processor-intensive applications, respond to sudden bursts in traffic, or meet redundancy requirements.
90
+
For most uses of ASP.NET, a single server can handle all requests quickly. However, many environments require that you deploy multiple servers for the following uses:
0 commit comments