diff --git a/aspnetcore/mvc/views/tag-helpers/built-in/AnchorTagHelper.md b/aspnetcore/mvc/views/tag-helpers/built-in/AnchorTagHelper.md
index 8280591ac235..1df9a19e03ad 100644
--- a/aspnetcore/mvc/views/tag-helpers/built-in/AnchorTagHelper.md
+++ b/aspnetcore/mvc/views/tag-helpers/built-in/AnchorTagHelper.md
@@ -1,6 +1,6 @@
----
+---
title: Anchor Tag Helper | Microsoft Docs
-author: Peter Kellner
+author: pkellner
description: Shows how to work with Anchor Tag Helper
keywords: ASP.NET Core,tag helper
ms.author: riande
@@ -12,15 +12,13 @@ ms.technology: aspnet
ms.prod: aspnet-core
uid: mvc/views/tag-helpers/builtin-th/AnchorTagHelper
---
-
# Anchor Tag Helper
By [Peter Kellner](http://peterkellner.net)
+The Anchor Tag Helper enhances the HTML anchor (``) tag by adding new attributes. The link generated (on the `href` tag) is created using the new attributes. That URL can include an optional protocol such as https.
-The Anchor Tag Helper enhances the html anchor (``) tag. A new set of attributes are defined that work with the anchor tag. The link generated (on the `href` tag) is based on a combination of these new attributes that work together to form the final URL. That URL can include an optional protocol such as https.
-
-The speaker controller used in attribute definitions below is shown here.
+The speaker controller below is used in samples in this document.
**SpeakerController.cs**
@@ -34,35 +32,110 @@ The speaker controller used in attribute definitions below is shown here.
### asp-controller
-`asp-controller` is used to associate which controller will be used to generate the final URL. The only valid choices are controllers that exist in the current project. To get to a list of all speakers specifying `asp-controller="Speaker"` is required. If only the `asp-controller` and no `asp-action` is specified, the default asp-action will be the name of the the controller method calling this view page.
+`asp-controller` is used to associate which controller will be used to generate the URL. The controllers specified must exist in the current project. The following code lists all speakers:
+
+```
+All Speakers
+```
+
+The generated URL will be:
+
+```
+All Speakers
+```
+
+If the `asp-controller` is specified and `asp-action` is not, the default `asp-action` will be the default controller method of the currently executing view. That is, in the above example, if `asp-action` is left out, and this Anchor Tag Helper is generated from *HomeController*'s `Index` view (**/Home**), the generated markup will be:
+
+
+```html
+All Speakers
+```
- - -
### asp-action
-`asp-action` is the name of the method in the controller that will be included in the final URL. That is, in the example, if the route to the Speaker Detail page is wanted, then the attribute should be set to `asp-action=Detail`. You should always set `asp-controller` when specifying `asp-action`. If no `asp-action` is specified then the default `asp-controller` will be the current executing controller.
+`asp-action` is the name of the action method in the controller that will be included in the generated `href`. For example, the following code set the generated `href` to point to the speaker detail page:
+
+```html
+Speaker Detail
+```
+
+The generated URL will be:
+
+```html
+Speaker Detail
+```
+
+If no `asp-controller` attribute is specified, the default controller calling the view executing the current view will be used.
+
+If the attribute `asp-action` is `Index`, then no action is appended to the URL, leading to the default `Index` method being called. The action specified (or defaulted), must exist in the controller referenced in `asp-controller`.
- - -
### asp-route-{value}
-`asp-route-` is a wild card route prefix. Any value you put after the trailing dash will be interpreted as the parameter to pass into the route. For example, if a tag is created as follows:
+`asp-route-` is a wild card route prefix. Any value you put after the trailing dash will be interpreted as a potential route parameter. If a default route is not found, this route prefix will be appended to the generated href as a request parameter and value. Otherwise it will be substituted in the route template.
+
+Assuming you have a controller method defined as follows:
+
+```csharp
+public IActionResult AnchorTagHelper(string id)
+{
+ var speaker = new SpeakerData()
+ {
+ SpeakerId = 12
+ };
+ return View(viewName, speaker);
+}
+```
+
+And have the default route template defined in your **Startup.cs** as follows:
+
+```csharp
+app.UseMvc(routes =>
+{
+ routes.MapRoute(
+ name: "default",
+ template: "{controller=Home}/{action=Index}/{id?}");
+});
+
+```
-`Speaker 11`
+The **cshtml** file that contains the Anchor Tag Helper necessary to use the **speaker** model parameter passed in from the controller to the view is as follows:
-the `href` generated will be
+```html
+@model SpeakerData
+
+
+SpeakerId: @Model.SpeakerId
+
+```
-`Speaker 11`
+The generated HTML will then be as follows because **id** was found in the default route.
-This is because a route was found that matched a single parameter "id" in the ```SpeakerController``` method ```Detail```. If there was no parameter match, say for example you created the tag helper
+```html
+SpeakerId: 12
+```
-`Ronald`
+If the route prefix is not part of the routing template found, which is the case with the following **cshtml** file:
-you would get generated the html
+```html
+@model SpeakerData
+
+
+SpeakerId: @Model.SpeakerId
+
+```
-`Ronald`
+The generated HTML will then be as follows because **speakerid** was not found in the route matched:
-This is because there was no route found that matched a controller that had a method named `Detail` with one string parameter titled `name`.
+
+```html
+SpeakerId: 12
+```
+
+If either `asp-controller` or `asp-action` are not specified, then the same default processing is followed as is in the `asp-route` attribute.
- - -
@@ -70,15 +143,15 @@ This is because there was no route found that matched a controller that had a me
`asp-route` provides a way to create a URL that links directly to a named route. Using routing attributes, a route can be named as shown in the `SpeakerController` and used in its `Evaluations` method.
-`Name = "speakerevals"` tells the Anchor Tag Helper to generate a route directly to that controller method using the URL `/Speaker/Evaluations`. If `asp-controller` or `asp-action` is specified in addition to `asp-route`, the route generated may not be what you expect. `asp-route` should not be used with either of the attributes `asp-controller` or `asp-action` to avoid a route conflict.
+`Name = "speakerevals"` tells the Anchor Tag Helper to generate a route directly to that controller method using the URL `/Speaker/Evaluations`. If `asp-controller` or `asp-action` is specified in addition to `asp-route`, the route generated may not be what you expect. `asp-route` should not be used with either of the attributes `asp-controller` or `asp-action` to avoid a route conflict.
- - -
### asp-all-route-data
-`asp-all-route-data` allows creating on a .NET context (that is, the running C# associated with your Razor view) a dictionary of key value pairs where the key is the parameter name and the value is the value associated with that key.
+`asp-all-route-data` allows creating a dictionary of key value pairs where the key is the parameter name and the value is the value associated with that key.
-As the example below shows, an inline dictionary is created and the data is passed to the razor view. The data could also be passed in with your model to keep the Razor view simpler.
+As the example below shows, an inline dictionary is created and the data is passed to the razor view. As an alternative, the data could also be passed in with your model.
```
@{
@@ -93,39 +166,40 @@ As the example below shows, an inline dictionary is created and the data is pass
asp-all-route-data="dict">SpeakerEvals
```
-The code that this generates looks as follows:
+The code above generates the following HTML:
```
http://localhost/Speaker/EvaluationsCurrent?speakerId=11¤tYear=true
```
-When the link is clicked, this will call the controller method `EvaluationsCurrent` because that controller has two string parameters that match what has been created from the `asp-all-route-data` dictionary.
+When the link is clicked, the controller method `EvaluationsCurrent` is called. It is called because that controller has two string parameters that match what has been created from the `asp-all-route-data` dictionary.
+
+If any keys in the dictionary match route parameters, those values will be substituted in the route as appropriate and the other non-matching values will be generated as request parameters.
- - -
### asp-fragment
-`asp-fragment` defines a URL fragment to append to the URL. The Anchor Tag Helper will add the hash character (#) automatically. If you create a tag:
+`asp-fragment` defines a URL fragment to append to the URL. The Anchor Tag Helper will add the hash character (#). If you create a tag:
```
About Speaker Evals
```
-The generated URL will be
-
+The generated URL will be:
```
http://localhost/Speaker/Evaluations#SpeakerEvaluations
```
-Hash tags are useful when doing client side applications. They can be used for easy marking and searching in JavaScript for example.
+Hash tags are useful when building client-side applications. They can be used for easy marking and searching in JavaScript, for example.
- - -
### asp-area
-`asp-area` sets the area name that ASP.NET Core uses to set the appropriate route. Below are examples of how the area attribute causes a remapping of routes. Setting `asp-area` to Blogs prefixes the directory Areas/Blogs to the routes of the associated controllers and views for this anchor tag..
+`asp-area` sets the area name that ASP.NET Core uses to set the appropriate route. Below are examples of how the area attribute causes a remapping of routes. Setting `asp-area` to Blogs prefixes the directory `Areas/Blogs` to the routes of the associated controllers and views for this anchor tag.
* Project name
@@ -170,11 +244,11 @@ The generated HTML will include the areas segment and will be as follows:
### asp-protocol
-The `asp-protocol` is for specifying a particular protocol (such as `https`) in your URL. An example Anchor Tag Helper that includes the protocol will look as follows.
+The `asp-protocol` is for specifying a protocol (such as `https`) in your URL. An example Anchor Tag Helper that includes the protocol will look as follows:
```About```
-and will generate HTML as follows.
+and will generate HTML as follows:
```About```
@@ -182,7 +256,7 @@ The domain in the example is localhost, but the Anchor Tag Helper uses the websi
- - -
-## Additional Resources
+## Additional resources
* [Areas](xref:mvc/controllers/areas)
diff --git a/aspnetcore/mvc/views/tag-helpers/built-in/CacheTagHelper.md b/aspnetcore/mvc/views/tag-helpers/built-in/CacheTagHelper.md
index 60d57467d39a..cac4e10c1873 100644
--- a/aspnetcore/mvc/views/tag-helpers/built-in/CacheTagHelper.md
+++ b/aspnetcore/mvc/views/tag-helpers/built-in/CacheTagHelper.md
@@ -1,6 +1,6 @@
----
-title: Anchor Tag Helper | Microsoft Docs
-author: Peter Kellner
+---
+title: Cache Tag Helper in ASP.NET Core MVC
+author: pkellner
description: Shows how to work with Cache Tag Helper
keywords: ASP.NET Core,tag helper
ms.author: riande
@@ -12,15 +12,14 @@ ms.technology: aspnet
ms.prod: aspnet-core
uid: mvc/views/tag-helpers/builtin-th/CacheTagHelper
---
-
-# Cache Tag Helper
+# Cache Tag Helper in ASP.NET Core MVC
By [Peter Kellner](http://peterkellner.net)
The Cache Tag Helper provides the ability to dramatically improve the performance of your ASP.NET Core app by caching its content to the internal ASP.NET Core cache provider.
-A simple example that shows the Cache Tag Helper in action sets the current time in its content area. The Razor View Engine sets the default `expires-after` to twenty minutes, which is the default if you specify no additional attributes.
+The Razor View Engine sets the default `expires-after` to twenty minutes.
The following Razor markup caches the date/time:
@@ -45,9 +44,9 @@ You can set the cache duration with the following attributes:
| | "false" |
-Determines whether the content enclosed by the Cache Tag Helper is cached. The default is `true`. If set to `false`, regardless of what other attributes are specified, this Cache Tag Helper will have no caching effect on the rendered output.
+Determines whether the content enclosed by the Cache Tag Helper is cached. The default is `true`. If set to `false` this Cache Tag Helper will have no caching effect on the rendered output.
-Usage Example:
+Example:
```html
@@ -64,9 +63,9 @@ Usage Example:
| DateTimeOffset | "@new DateTime(2025,1,29,17,02,0)" |
-Sets an absolute expiration date. The example below will cache the contents of the Cache Tag Helper until 5:02 PM on January 29, 2025.
+Sets an absolute expiration date. The following example will cache the contents of the Cache Tag Helper until 5:02 PM on January 29, 2025.
-Usage Example:
+Example:
```html
@@ -80,15 +79,15 @@ Usage Example:
| Attribute Type | Example Value |
|---------------- |---------------- |
-| TimeSpan | "@TimeSpan.FromSeconds(10)" |
+| TimeSpan | "@TimeSpan.FromSeconds(120)" |
Sets the length of time from the first request time to cache the contents.
-Usage Example:
+Example:
```html
-
+
Current Time Inside Cache Tag Helper: @DateTime.Now
```
@@ -99,15 +98,15 @@ Usage Example:
| Attribute Type | Example Value |
|---------------- |---------------- |
-| TimeSpan | "@TimeSpan.FromSeconds(5)" |
+| TimeSpan | "@TimeSpan.FromSeconds(60)" |
Sets the time that a cache entry should be evicted if it has not been accessed.
-Usage Example:
+Example:
```html
-
+
Current Time Inside Cache Tag Helper: @DateTime.Now
```
@@ -121,9 +120,9 @@ Usage Example:
| String | "User-Agent" |
| | "User-Agent,content-encoding" |
-Accepts a single header value or a comma-separated list of header values that trigger a cache refresh when they change. The example below monitors the header value `User-Agent`, which will cache the content for every different `User-Agent` presented to the web server.
+Accepts a single header value or a comma-separated list of header values that trigger a cache refresh when they change. The following example monitors the header value `User-Agent`. The example will cache the content for every different `User-Agent` presented to the web server.
-Usage Example:
+Example:
```html
@@ -140,9 +139,9 @@ Usage Example:
| String | "Make" |
| | "Make,Model" |
-Accepts a single header value or a comma-separated list of header values that trigger a cache refresh when they change. The example below looks at the values of `Make` and `Model`.
+Accepts a single header value or a comma-separated list of header values that trigger a cache refresh when the header value changes. The following example looks at the values of `Make` and `Model`.
-Usage Example:
+Example:
```
html
@@ -160,8 +159,8 @@ html
| String | "Make" |
| | "Make,Model" |
-Accepts a single header value or a comma-separated list of header values that trigger a cache refresh when they change.
-Usage Example:
+Accepts a single header value or a comma-separated list of header values that trigger a cache refresh when the route data parameter value(s) change.
+Example:
*Startup.cs*
@@ -188,9 +187,9 @@ routes.MapRoute(
| String | ".AspNetCore.Identity.Application" |
| | ".AspNetCore.Identity.Application,HairColor" |
-Accepts a single header value or a comma-separated list of header values that trigger a cache refresh when they change. The example below looks at the cookie associated with asp.net Identity. When a user is authenticated the request cookie to be set which triggers a cache refresh.
+Accepts a single header value or a comma-separated list of header values that trigger a cache refresh when the header values(s) change. The following example looks at the cookie associated with ASP.NET Identity. When a user is authenticated the request cookie to be set which triggers a cache refresh.
-Usage Example:
+Example:
```html
@@ -207,11 +206,11 @@ Usage Example:
| Boolean | "true" |
| | "false" (default) |
-Specifies whether or not the cache should reset when the logged-in user (or Context Principal) changes. The current user is also known as the Request Context Principal and can be viewed in a Razor view by referencing `@User.Identity.Name`.
+Specifies whether or not the cache should reset when the logged-in user (or Context Principal) changes. The current user is also known as the Request Context Principal and can be viewed in a Razor view by referencing `@User.Identity.Name`.
-The example below looks at the current logged in user.
+The following example looks at the current logged in user.
-Usage Example:
+Example:
```html
@@ -219,8 +218,7 @@ Usage Example:
```
-> [!NOTE]
-> Using the attribute `vary-by-user` maintains the contents in cache through a log-in and log-out cycle. When using `vary-by-cookie` which references the `.AspNetCore.Identity.Application` as shown above, a log-in and log-out action invalidates the cache for the same authenticated user (because a new cookie value is generated). If no user is authenticated, the state is considered a valid. [REVIEW, don't understand this] This means that no logged-in user is one cache state, and the contents will be maintained for that condition as well.
+Using the attribute `vary-by-user` maintains the contents in cache through a log-in and log-out cycle. When using `vary-by-cookie` which references the `.AspNetCore.Identity.Application` as shown above, a log-in and log-out action invalidates the cache for the same authenticated user (because a new cookie value is generated). If no user is authenticated, the state is considered a valid. [REVIEW, don't understand this] This means that no logged-in user is one cache state, and the contents will be maintained for that condition as well.
- - -
@@ -233,12 +231,11 @@ Usage Example:
Allows for customization of what data gets cached. When the object referenced by the attribute's string value changes, the content of the Cache Tag Helper is updated. Often a string-concatenation of model values are assigned to this attribute. Effectively, that means an update to any of the concatenated values invalidates the cache.
-The example below assumes the controller method rendering the view sums the integer value of the two route parameters, `myParam1` and `myParam2`, and returns that as the single model property. When this sum changes, the content of the Cache Tag Helper is rendered and cachee again.
-
-Usage Example:
+The following example assumes the controller method rendering the view sums the integer value of the two route parameters, `myParam1` and `myParam2`, and returns that as the single model property. When this sum changes, the content of the Cache Tag Helper is rendered and cached again.
+Example:
-*Controller*
+Action:
```csharp
public IActionResult Index(string myParam1,string myParam2,string myParam3)
@@ -272,7 +269,7 @@ public IActionResult Index(string myParam1,string myParam2,string myParam3)
Provides cache eviction guidance to the built-in cache provider. The web server will evict `Low` cache entries first when it's under memory pressure.
-Usage Example:
+Example:
```html
@@ -280,12 +277,11 @@ Usage Example:
```
-> [!WARNING]
-> The `priority` attribute does not guarantee a specific level of cache retention. `CacheItemPriority` is only a suggestion to the Cache Provider. Setting this attribute to `NeverRemove` does not guarantee that the cache will not be evicted. `CacheItemPriority` sets the priority the cache evicts items under memory pressure. See [Additional Resources](#additional-resources) for more information.
+The `priority` attribute does not guarantee a specific level of cache retention. `CacheItemPriority` is only a suggestion. Setting this attribute to `NeverRemove` does not guarantee that the cache will always be retained. See [Additional Resources](#additional-resources) for more information.
The Cache Tag Helper is dependent on the the [memory cache service](xref:performance/caching/memory). The Cache Tag Helper adds the service if it has not been added.
-## Additional Resources
+## Additional resources
*
*
diff --git a/aspnetcore/mvc/views/tag-helpers/built-in/DistributedCacheTagHelper.md b/aspnetcore/mvc/views/tag-helpers/built-in/DistributedCacheTagHelper.md
new file mode 100644
index 000000000000..70aacf9ae632
--- /dev/null
+++ b/aspnetcore/mvc/views/tag-helpers/built-in/DistributedCacheTagHelper.md
@@ -0,0 +1,75 @@
+---
+title: Distributed Cache Tag Helper | Microsoft Docs
+author: pkellner
+description: Shows how to work with Cache Tag Helper
+keywords: ASP.NET Core,tag helper
+ms.author: riande
+manager: wpickett
+ms.date: 02/14/2017
+ms.topic: article
+ms.assetid: c045d485-d1dc-4cea-a675-46be83b7a022
+ms.technology: aspnet
+ms.prod: aspnet-core
+uid: mvc/views/tag-helpers/builtin-th/DistributedCacheTagHelper
+---
+# Distributed Cache Tag Helper
+
+By [Peter Kellner](http://peterkellner.net)
+
+
+The Distributed Cache Tag Helper provides the ability to dramatically improve the performance of your ASP.NET Core app by caching its content to a distributed cache source.
+
+The Distributed Cache Tag Helper inherits from the same base class as the Cache Tag Helper. All attributes associated with the Cache Tag Helper will also work on the Distributed Tag Helper.
+
+
+The Distributed Cache Tag Helper follows the **Explicit Dependencies Principle** known as **Constructor Injection**. Specifically, the `IDistributedCache` interface container is passed into the Distributed Cache Tag Helper's constructor. If no specific concrete implementation of `IDistributedCache` has been created in `ConfigureServices`, usually found in startup.cs, then the Distributed Cache Tag Helper will use the same in-memory provider for storing cached data as the basic Cache Tag Helper.
+
+## Distributed Cache Tag Helper Attributes
+
+- - -
+
+### enabled expires-on expires-after expires-sliding vary-by-header vary-by-query vary-by-route vary-by-cookie vary-by-user vary-by priority
+
+See Cache Tag Helper for definitions. Distributed Cache Tag Helper inherits from the same class as Cache Tag Helper so all these attributes are common from Cache Tag Helper.
+
+- - -
+
+### name (required)
+
+| Attribute Type | Example Value |
+|---------------- |---------------- |
+| string | "my-distributed-cache-unique-key-101" |
+
+The required `name` attribute is used as a key to that cache stored for each instance of a Distributed Cache Tag Helper. Unlike the basic Cache Tag Helper that assigns a key to each Cache Tag Helper instance based on the Razor page name and location of the tag helper in the razor page, the Distributed Cache Tag Helper only bases it's key on the attribute `name`
+
+Usage Example:
+
+```html
+
+ Time Inside Cache Tag Helper: @DateTime.Now
+
+```
+
+## Distributed Cache Tag Helper IDistributedCache Implementations
+
+There are two implementations of `IDistributedCache` built in to ASP.NET Core. One is based on **Sql Server** and the other is based on **Redis**. Details of these implementations can be found at the resource referenced below named "Working with a distributed cache". Both implementations involve setting an instance of `IDistributedCache` in ASP.NET Core's **startup.cs**.
+
+There no tag attributes specifically associated with using any specific implementation of `IDistributedCache`.
+
+
+
+- - -
+
+
+
+## Additional resources
+
+*
+*
+*
+*
+*
+
+
+
+
diff --git a/aspnetcore/mvc/views/tag-helpers/built-in/EnvironmentTagHelper.md b/aspnetcore/mvc/views/tag-helpers/built-in/EnvironmentTagHelper.md
new file mode 100644
index 000000000000..117873747950
--- /dev/null
+++ b/aspnetcore/mvc/views/tag-helpers/built-in/EnvironmentTagHelper.md
@@ -0,0 +1,42 @@
+---
+title: Environment Tag Helper | Microsoft Docs
+author: pkellner
+description: ASP.Net Core Environment Tag Helper defined including all properties
+keywords: ASP.NET Core,tag helper
+ms.author: riande
+manager: wpickett
+ms.date: 02/14/2017
+ms.topic: article
+ms.assetid: c045d485-d1dc-4cea-a675-46be83b7a035
+ms.technology: aspnet
+ms.prod: aspnet-core
+uid: mvc/views/tag-helpers/builtin-th/EnvironmentTagHelper
+---
+# Environment Tag Helper
+
+By [Peter Kellner](http://peterkellner.net)
+
+The Environment Tag Helper conditionally renders its enclosed content based on the current hosting environment. Its single attribute `names` is a comma separated list of environment names, that if any match to the current environment, will trigger the enclosed content to be rendered.
+
+## Environment Tag Helper Attributes
+
+### names
+
+Accepts a single hosting environment name or a comma-separated list of hosting environment names that trigger the rendering of the enclosed content.
+
+These value(s) are compared to the current value returned from the ASP.NET Core static property `HostingEnvironment.EnvironmentName`. This value is one of the following: **Staging**; **Development** or **Production**. The comparison ignores case.
+
+An example of a valid `environment` tag helper is:
+
+```html
+
+ HostingEnvironment.EnvironmentName is Staging or Production
+
+```
+
+## Additional resources
+
+*
+*
+
+
diff --git a/aspnetcore/mvc/views/tag-helpers/built-in/ImageTagHelper.md b/aspnetcore/mvc/views/tag-helpers/built-in/ImageTagHelper.md
index c35069ccc49b..0e2c14b198af 100644
--- a/aspnetcore/mvc/views/tag-helpers/built-in/ImageTagHelper.md
+++ b/aspnetcore/mvc/views/tag-helpers/built-in/ImageTagHelper.md
@@ -1,4 +1,18 @@
-# ImageTagHelper
+---
+title: Anchor Tag Helper | Microsoft Docs
+author: pkellner
+description: Shows how to work with Image Tag Helper
+keywords: ASP.NET Core,tag helper
+ms.author: riande
+manager: wpickett
+ms.date: 02/14/2017
+ms.topic: article
+ms.assetid: c045d485-d1dc-4cea-a675-46be83b7a013
+ms.technology: aspnet
+ms.prod: aspnet-core
+uid: mvc/views/tag-helpers/builtin-th/ImageTagHelper
+---
+# ImageTagHelper
By [Peter Kellner](http://peterkellner.net)
@@ -40,7 +54,7 @@ To activate the Image Tag Helper, the src attribute is required on the `
` e
> [!NOTE]
> The Image Tag Helper uses the `Cache` provider on the local web server to store the calculated `Sha512` of a given file. If the file is requested again the `Sha512` does not need to be recalculated. The Cache is invalidated by a file watcher that is attached to the file when the file's `Sha512` is calculated.
-## Additional Resource
+## Additional resources
*
diff --git a/aspnetcore/mvc/views/tag-helpers/built-in/index.md b/aspnetcore/mvc/views/tag-helpers/built-in/index.md
index 4f6208db71a4..6d79561691dd 100644
--- a/aspnetcore/mvc/views/tag-helpers/built-in/index.md
+++ b/aspnetcore/mvc/views/tag-helpers/built-in/index.md
@@ -13,9 +13,9 @@ Microsoft has included multiple Tag Helpers that can be immediately used in .net
**[Cache Tag Helper](CacheTagHelper.md)**
-[comment]: **[DistributedTagHelper](builtin-th/AnchorTagHelper.md)**
+**[Distributed Cache Tag Helper](DistributedCacheTagHelper.md)**
-[comment]: **[EnvironmentTagHelper](builtin-th/EnvironmentTagHelper.md)**
+**[Environment Tag Helper](EnvironmentTagHelper.md)**
[comment]: **[FormActionTagHelper](builtin-th/FormActionTagHelper.md)**