From 774ec2df9f199b9adc8763abba108878935c4519 Mon Sep 17 00:00:00 2001 From: Rick Anderson Date: Mon, 24 Jul 2017 07:56:01 -0700 Subject: [PATCH] Update intro.md --- aspnetcore/mvc/views/tag-helpers/intro.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/aspnetcore/mvc/views/tag-helpers/intro.md b/aspnetcore/mvc/views/tag-helpers/intro.md index c9e1b01591..0ab0408109 100644 --- a/aspnetcore/mvc/views/tag-helpers/intro.md +++ b/aspnetcore/mvc/views/tag-helpers/intro.md @@ -5,9 +5,8 @@ description: Learn what tag helpers are and how to use them in ASP.NET Core. keywords: ASP.NET Core, tag helpers ms.author: riande manager: wpickett -ms.date: 10/14/2016 +ms.date: 7/14/2017 ms.topic: article -ms.assetid: 7a47f0b9-dd1e-4d25-97ec-2346a5d3ce2c ms.technology: aspnet ms.prod: asp.net-core uid: mvc/views/tag-helpers/intro @@ -20,7 +19,7 @@ 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 `