ASP NET Core Razor Pages Introduction
In this tutorial we will discuss the basics of an ASP.NET Core Razor Pages web app.
I strongly recommend you to watch the video/post after proceeding.
What is Blazor?
Razor is a markup syntax and we can embedding server-based c# code into webpages. The Razor syntax consists of Razor markup, C#, and HTML. Files containing Razor generally have a .cshtml file extension. Razor is also found in Razor components files (.razor).
In Razor pages, we can write C# and uses the @ symbol to transition from HTML to C#. Razor evaluates C# expressions and produce the HTML output.
When an @ symbol is followed by a Razor reserved keyword, it transitions into Razor-specific markup. Otherwise, it transitions into plain C#.
Click below to see the full video steps in Action.
In this tutorial we will discuss the basics of an ASP.NET Core Razor Pages web app.
I strongly recommend you to watch the video/post after proceeding.
What is Blazor?
Razor is a markup syntax and we can embedding server-based c# code into webpages. The Razor syntax consists of Razor markup, C#, and HTML. Files containing Razor generally have a .cshtml file extension. Razor is also found in Razor components files (.razor).
In Razor pages, we can write C# and uses the @ symbol to transition from HTML to C#. Razor evaluates C# expressions and produce the HTML output.
When an @ symbol is followed by a Razor reserved keyword, it transitions into Razor-specific markup. Otherwise, it transitions into plain C#.
Click below to see the full video steps in Action.
No comments:
Post a Comment
Your feedback is important.
Visit www.techwebdots.in