Computer Magic Logo
Anchor

Wednesday, March 22, 2017

Published by Aristotelis Pitaridis

The following example demonstrates how to use the anchor tag helper to create a link to the Index action of the Home controller.

<a asp-action="Index" asp-controller="Home">Home</a>

The output of this tag helper will be the following.

<a href="/">Home</a>