From f5cd1cc57e2ac0732dca943ca7638c155d6c62be Mon Sep 17 00:00:00 2001 From: omccully Date: Sun, 21 Apr 2024 15:24:51 -0500 Subject: [PATCH] Clarify misleading example of an IIS handler --- .../planning-for-security/build-a-custom-iis-server.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iis/get-started/planning-for-security/build-a-custom-iis-server.md b/iis/get-started/planning-for-security/build-a-custom-iis-server.md index e618591dc..dae511763 100644 --- a/iis/get-started/planning-for-security/build-a-custom-iis-server.md +++ b/iis/get-started/planning-for-security/build-a-custom-iis-server.md @@ -84,7 +84,7 @@ Navigate to the <system.webServer>/<modules> section. This section, Navigate to the <system.webServer>/<handlers> section. This section, which can be configured at the server, application, or URL-level, specifies how requests are handled. Modules typically participate in each and every request, whereas handlers only get requests for a particular URL. -A good example of a module is the compression module. The compression module looks at each response and compresses it if required. The ASP.NET page handler is a good example. It receives only requests that are mapped to it, for example requests that have the extension .aspx. The `` list defines the mappings between a request based on the URL and verb, and a handling module that will be used to process this request. There is also some extra information that is used to configure each mapping, which is not the focus in this topic. +A good example of a module is the compression module. The compression module looks at each response and compresses it if required. The ASP.NET page handler is a good example of a handler. It receives only requests that are mapped to it, for example requests that have the extension .aspx. The `` list defines the mappings between a request based on the URL and verb, and a handling module that will be used to process this request. There is also some extra information that is used to configure each mapping, which is not the focus in this topic. [!code-xml[Main](build-a-custom-iis-server/samples/sample7.xml)]