"
 
 
 
ASP.NET (snapshot 2017) Microsoft documentation and samples

Anchor Tag Helper

By Peter Kellner

The Anchor Tag Helper enhances the HTML anchor (<a ... ></a>) tag by adding new attributes. The link generated (on the href tag) is created using the new attributes. That URL can include an optional protocol such as https.

The speaker controller below is used in samples in this document.


SpeakerController.cs

[!code-csharpMain]

   1:  using System.Collections.Generic;
   2:  using System.Linq;
   3:  using Microsoft.AspNetCore.Mvc;
   4:   
   5:  namespace TagHelpersBuiltInAspNetCore.Controllers
   6:  {
   7:      public class SpeakerController : Controller
   8:      {
   9:          public List<ModelData> Speakers =
  10:              new List<ModelData>
  11:              {
  12:                  new ModelData {SpeakerId = 10},
  13:                  new ModelData {SpeakerId = 11},
  14:                  new ModelData {SpeakerId = 12}
  15:              };
  16:   
  17:          [Route("Speaker/{id:int}")]
  18:          public IActionResult Detail(int id)
  19:          {
  20:              return View(Speakers.
  21:                  FirstOrDefault(a => a.SpeakerId == id));
  22:          }
  23:   
  24:   
  25:          [Route("/Speaker/Evaluations",
  26:               Name = "speakerevals")]
  27:          public IActionResult Evaluations()
  28:          {
  29:              return View();
  30:          }
  31:   
  32:          [Route("/Speaker/EvaluationsCurrent",
  33:               Name = "speakerevalscurrent")]
  34:          public IActionResult
  35:              EvaluationsCurrent(string speakerId,
  36:                  string currentYear)
  37:          {
  38:              return View();
  39:          }
  40:   
  41:          // GET: /<controller>/
  42:          public IActionResult Index()
  43:          {
  44:              return View(Speakers);
  45:          }
  46:      }
  47:   
  48:      public class ModelData
  49:      {
  50:          public int SpeakerId { get; set; }
  51:      }
  52:  }

Anchor Tag Helper Attributes


asp-controller

asp-controller is used to associate which controller will be used to generate the URL. The controllers specified must exist in the current project. The following code lists all speakers:

<a asp-controller="Speaker" asp-action="Index">All Speakers</a>

The generated markup will be:

If the asp-controller is specified and asp-action is not, the default asp-action will be the default controller method of the currently executing view. That is, in the above example, if asp-action is left out, and this Anchor Tag Helper is generated from HomeController’s Index view (/Home), the generated markup will be:


asp-action

asp-action is the name of the action method in the controller that will be included in the generated href. For example, the following code set the generated href to point to the speaker detail page:

The generated markup will be:

If no asp-controller attribute is specified, the default controller calling the view executing the current view will be used.

If the attribute asp-action is Index, then no action is appended to the URL, leading to the default Index method being called. The action specified (or defaulted), must exist in the controller referenced in asp-controller.


### asp-route-{value}

asp-route- is a wild card route prefix. Any value you put after the trailing dash will be interpreted as a potential route parameter. If a default route is not found, this route prefix will be appended to the generated href as a request parameter and value. Otherwise it will be substituted in the route template.

Assuming you have a controller method defined as follows:

And have the default route template defined in your Startup.cs as follows:

The cshtml file that contains the Anchor Tag Helper necessary to use the speaker model parameter passed in from the controller to the view is as follows:

@model SpeakerData
<!DOCTYPE html>
<html><body>
<a asp-controller='Speaker' asp-action='Detail' [email protected]>SpeakerId: @Model.SpeakerId</a>
<body></html>

The generated HTML will then be as follows because id was found in the default route.

If the route prefix is not part of the routing template found, which is the case with the following cshtml file:

@model SpeakerData
<!DOCTYPE html>
<html><body>
<a asp-controller='Speaker' asp-action='Detail' [email protected]>SpeakerId: @Model.SpeakerId</a>
<body></html>

The generated HTML will then be as follows because speakerid was not found in the route matched:

If either asp-controller or asp-action are not specified, then the same default processing is followed as is in the asp-route attribute.


asp-route

asp-route provides a way to create a URL that links directly to a named route. Using routing attributes, a route can be named as shown in the SpeakerController and used in its Evaluations method.

Name = "speakerevals" tells the Anchor Tag Helper to generate a route directly to that controller method using the URL /Speaker/Evaluations. If asp-controller or asp-action is specified in addition to asp-route, the route generated may not be what you expect. asp-route should not be used with either of the attributes asp-controller or asp-action to avoid a route conflict.


asp-all-route-data

asp-all-route-data allows creating a dictionary of key value pairs where the key is the parameter name and the value is the value associated with that key.

As the example below shows, an inline dictionary is created and the data is passed to the razor view. As an alternative, the data could also be passed in with your model.

@{
    var dict =
        new Dictionary<string, string>
        {
            {"speakerId", "11"},
            {"currentYear", "true"}
        };
}
<a asp-route="speakerevalscurrent" 
   asp-all-route-data="dict">SpeakerEvals</a>

The code above generates the following URL: http://localhost/Speaker/EvaluationsCurrent?speakerId=11&currentYear=true

When the link is clicked, the controller method EvaluationsCurrent is called. It is called because that controller has two string parameters that match what has been created from the asp-all-route-data dictionary.

If any keys in the dictionary match route parameters, those values will be substituted in the route as appropriate and the other non-matching values will be generated as request parameters.


asp-fragment

asp-fragment defines a URL fragment to append to the URL. The Anchor Tag Helper will add the hash character (#). If you create a tag:

<a asp-action="Evaluations" asp-controller="Speaker"  
   asp-fragment="SpeakerEvaluations">About Speaker Evals</a>

The generated URL will be: http://localhost/Speaker/Evaluations#SpeakerEvaluations

Hash tags are useful when building client-side applications. They can be used for easy marking and searching in JavaScript, for example.


asp-area

asp-area sets the area name that ASP.NET Core uses to set the appropriate route. Below are examples of how the area attribute causes a remapping of routes. Setting asp-area to Blogs prefixes the directory Areas/Blogs to the routes of the associated controllers and views for this anchor tag.

Specifying an area tag that is valid, such as area="Blogs" when referencing the AboutBlog.cshtml file will look like the following using the Anchor Tag Helper.

<a asp-action="AboutBlog" asp-controller="Home" asp-area="Blogs">Blogs About</a>

The generated HTML will include the areas segment and will be as follows:

[!TIP] For MVC areas to work in a web application, the route template must include a reference to the area if it exists. That template, which is the second parameter of the routes.MapRoute method call, will appear as: template: '"{area:exists}/{controller=Home}/{action=Index}"'


asp-protocol

The asp-protocol is for specifying a protocol (such as https) in your URL. An example Anchor Tag Helper that includes the protocol will look as follows:

<a asp-protocol="https" asp-action="About" asp-controller="Home">About</a>

and will generate HTML as follows:

<a href="https://localhost/Home/About">About</a>

The domain in the example is localhost, but the Anchor Tag Helper uses the website’s public domain when generating the URL.


Additional resources





Comments ( )
<00>  <01>  <02>  <03>  <04>  <05>  <06>  <07>  <08>  <09>  <10>  <11>  <12>  <13>  <14>  <15>  <16>  <17>  <18>  <19>  <20>  <21>  <22>  <23
Link to this page: //www.vb-net.com/AspNet-DocAndSamples-2017/aspnetcore/mvc/views/tag-helpers/built-in/anchor-tag-helper.htm
<SITEMAP>  <MVC>  <ASP>  <NET>  <DATA>  <KIOSK>  <FLEX>  <SQL>  <NOTES>  <LINUX>  <MONO>  <FREEWARE>  <DOCS>  <ENG>  <CHAT ME>  <ABOUT ME>  < THANKS ME>