# [Razor Syntax](https://docs.microsoft.com/en-us/aspnet/core/mvc/views/razor) ## Markup ```cs @page // set this as razor page @model .Models.Entity // if MVC set type of elements passed to the view @model Model // if Razor page set underlying class @* razor comment *@ // substitute @variable with it's value @variable @{ // razor code block // can contain C# or HTML Model // access to passed @model (MVC) } @if (condition) { } @for (init, condition, iteration) { } @Model.Property // display Property value (MVC) ``` --- ## Tag Helpers (ASP.NET Core) **Tag helpers** are reusable components for automating the generation of HTML in Razor Pages. Tag helpers target specific HTML tags. Example: ```html Home ``` ### Managing Tag Helpers The `@addTagHelper` directive makes Tag Helpers available to the view. Generally, the view file is `Pages/_ViewImports.cshtml`, which by default is inherited by all files in the `Pages` folder and subfolders, making Tag Helpers available. ```cs @using @namespace .Pages // or .Models @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers ``` The first parameter after `@addTagHelper` specifies the Tag Helpers to load (`*` for all Tag Helpers), and the second parameter (e.g. `Microsoft.AspNetCore.Mvc.TagHelpers`) specifies the assembly containing the Tag Helpers. `Microsoft.AspNetCore.Mvc.TagHelpers` is the assembly for the built-in ASP.NET Core Tag Helpers. #### Opting out of individual elements It's possible to disable a Tag Helper at the element level with the Tag Helper opt-out character (`!`) ```cshtml ``` ### Explicit Tag Helpers The `@tagHelperPrefix` directive allows to specify a tag prefix string to enable Tag Helper support and to make Tag Helper usage explicit. ```cshtml @tagHelpersPrefix th: ``` ### Important Tag Helpers (`asp-`) & HTML Helpers (`@Html`) [Understanding Html Helpers](https://stephenwalther.com/archive/2009/03/03/chapter-6-understanding-html-helpers) ```cs @model .Models.Entity // Display the name of the property @Html.DisplayNameFor(model => model.EntityProp) @nameof(Model.EntityProp) // Display the value of the property @Html.DisplayFor(model => model.EntityProp) @Model.EntityProp // use the property as the label, eventually w/ [DisplayName("...")] @Html.LabelFor() // automatically set the value at form compilation and submission @Html.EditorFor() // route config is {Controller}/{Action}/{Id?} Link // link to /Controller/Action Link // link to /Controller/Action/Id @Html.ActionLink("", "", "", new { @HTmlAttribute = value, Id = value }) // link to /Controller/Action/Id // link to /Controller/Action?queryParameter=value @Html.ActionLink("", "", "", new { @HTmlAttribute = value, queryParameter = value }) Link // asp-route-* for query strings ``` ### [Select Tag Helper](https://docs.microsoft.com/en-us/aspnet/core/mvc/views/working-with-forms) [StackOverflow](https://stackoverflow.com/a/34624217) [SelectList Docs](https://docs.microsoft.com/en-us/dotnet/api/system.web.mvc.selectlist) In `ViewModel.cs`: ```cs class ViewModel { public int EntityId { get; set; } // value selected in form ends up here // object has numeric id and other props public SelectList Entities = new() public ViewModel(){ } // parameterless constructor (NEEDED) } ``` In `View.cs` ```cs @model ViewModel