MVC6 Select Tag Helper
In this post from my series exploring the MVC 6 tag helpers, I will be covering the select tag helper. The select tag helper is used to generated select and associated option elements for properties of...
View ArticleMVC 6 Form Tag Helper
So for in my series covering MVC 6 tag helpers, I have covered all the tag helpers that you would use to generate the contents of a form: Input Tag Helper Label Tag Helper Textarea Tag Helper Select...
View ArticleMVC 6 Anchor Tag Helper
In today’s post in my series on the MVC 6 Tag Helpers, I will explore the MVC 6 Anchor tag helper. This tag helper is used generate href attributes to link to a particular controller action or MVC...
View ArticleMVC 6 Cache Tag Helper
In this post in my series exploring the ASP.NET 5 MVC 6 tag helpers, I will dig into the Cache Tag Helper. The Cache Tag Helper is a little different than most of the other tag helpers we talked about...
View ArticleCreating custom MVC 6 Tag Helpers
In the last few blog posts, I have spent some time covering the tag helpers that are built in to MVC 6. While the built in tag helpers cover a lot of functionality needed for many basic scenarios, you...
View ArticleMVC 6 Image Tag Helper
ASP.NET 5 Beta 5 shipped yesterday and it includes a new tag helper: the Image tag helper. While this is a very simple tag helper, it has special meaning for me. Implementing this tag helper was my...
View ArticleAdding Prefixes to Tag Helpers in MVC 6
Some people have said that they would prefer all Tag Helper elements in MVC 6 to be prefixed. I honestly don’t see myself doing this but it is easy to turn on if you prefer tag helper elements to be...
View ArticleCustom MVC 6 Tag Helper Samples
A group of us who have been exploring MVC 6 Tag Helpers have created a repository of Tag Helper Samples. The repository contains a set of real world samples that can help you understand how to build...
View ArticleMarkdown in your MVC 6 Razor Pages
What? Markdown in your Razor code? Yeah…and it was totally easy to build too. Taylor Mullen demoed the idea of a Markdown Tag Helper idea at Orchard Harvest and I thought it would be nice to include...
View ArticleMVC 6 TextArea Tag Helper
In this post from the MVC 6 Tag Helper series I will be covering the textarea tag helper. The textarea tag helper is very similar to the input tag helper but specifically targets the textarea element...
View Article