From cace8a2c4ce3719f14a2a16181bd8b647d4007f1 Mon Sep 17 00:00:00 2001 From: lootle1 <175976130+lootle1@users.noreply.github.com> Date: Mon, 4 May 2026 11:23:29 -0500 Subject: [PATCH 1/3] Light Freshness Edit: ASP.NET - mvc, test, and web-api --- aspnetcore/mvc/views/tag-helpers/intro.md | 28 +++++++++++------------ 1 file changed, 14 insertions(+), 14 deletions(-) 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 `