Introduction In the last post, we talked about Tag Helper Components and how we can use them to modify existing HTML elements and inject scripts on the fly. I needed Google Analytics scripts in my ASP.NET Core application, so I decided to make a NuGet package for that. It is actually a Tag Helper Component. […]
Continue readingTag Helper Components – Introduction We already talked about Tag Helpers in several posts before. This time we will be talking about something related. ASP.NET Core 2 is here and it brings us a new feature – Tag Helper Components. Tag Helper Components are responsible for generating or modifying a specific piece of HTML. They […]