ASP Module 1
CtrlK
Creating a razor pages app
Creating a razor pages app
  • Different types of web apps
  • Creating a razor pages app
    • Create a web app project
    • Run the Razor Pages project
    • Tour the app
    • Explore the project
  • Add pizza page to the app
    • Examine pizza page's structure
    • Add pizza classes
    • Add pizza markup
    • Adding pizza pagemodel
      • PageModel Binding
      • Validating model
      • Pizza form submission
      • Post handler for the Delete
      • Link to the Pizza page
      • Test the app
      • Complete code for PizzaModel
      • Order of Execution
  • What are tag helpers
  • Summary and official documentation
Powered by GitBook
On this page

What are tag helpers

Tag Helpers address the inefficiencies of context switching between HTML and C#. Most of ASP.NET Core's built-in Tag Helpers extend standard HTML elements.

Let us take a look at some of them

Tag Helpers
PreviousOrder of ExecutionNextSummary and official documentation

Last updated 2 years ago