diff --git a/aspnetcore/mvc/views/tag-helpers/intro.md b/aspnetcore/mvc/views/tag-helpers/intro.md index d722b9d14c06..9dd21ec2f036 100644 --- a/aspnetcore/mvc/views/tag-helpers/intro.md +++ b/aspnetcore/mvc/views/tag-helpers/intro.md @@ -4,7 +4,7 @@ author: tdykstra description: Learn what Tag Helpers are and how to use them in ASP.NET Core. ms.author: tdykstra ms.custom: H1Hack27Feb2017, sfi-image-nochange -ms.date: 03/18/2019 +ms.date: 05/04/2026 uid: mvc/views/tag-helpers/intro --- # Tag Helpers in ASP.NET Core @@ -14,21 +14,21 @@ By [Rick Anderson](https://twitter.com/RickAndMSFT) ## What are Tag Helpers Tag Helpers enable server-side code to participate in creating and rendering HTML elements in Razor files. For example, the built-in `ImageTagHelper` can append a version number to the image name. Whenever the image changes, the server generates a new unique version for the image, so clients are guaranteed to get the current image (instead of a stale cached image). There are many built-in Tag Helpers for common tasks - such as creating forms, links, loading assets and more - and even more available in public GitHub repositories and as NuGet packages. Tag Helpers are authored in C#, and they target HTML elements based on element name, attribute name, or parent tag. For example, the built-in `LabelTagHelper` can target the HTML `