To create a custom tag helper, you need to create a class and decorate it with the _______ attribute.

  • TagAttribute
  • CustomTag
  • TagHelper
  • HelperAttribute
To create a custom tag helper in ASP.NET Core, you need to create a class and decorate it with the TagHelper attribute. This attribute marks the class as a tag helper, allowing it to process and modify HTML tags in Razor views.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *