Category: ASP

0

Chapter 19: Razor Intro

Razor – Markup — that is, the HTML + Razor syntax combination that lives inside .cshtml files. This is the actual “markup” part people refer to when they say “Razor markup”. In the previous...

0

Chapter 20: Razor Syntax

Razor – C# and VB Code Syntax — that is, how you actually write C# or VB.NET code when you’re inside a .cshtml or .vbhtml file. This is the most important difference between the...

0

Chapter 21: Razor – C# Variables

Razor – C# Variables — that is, how you declare, use, and work with variables inside .cshtml Razor files when using C#. This is one of the first things every Razor beginner must master,...

0

Chapter 22: Razor – C# Loops and Arrays

Razor: C# Loops and Arrays inside .cshtml files. This is where your pages stop being static and start becoming truly dynamic: showing lists of products, menu items, search results, user comments, table rows, cards...

0

Chapter 23: Razor – C# Logic Conditions

Razor: C# Logic Conditions (if, else, switch, ternary operators, null checks, etc.) inside .cshtml files. This is where your pages become truly intelligent: showing different content depending on time of day, user role, whether...

0

Chapter 24: Razor VB Variables

Razor – VB Variables — that is, how you declare, use, and work with variables inside .vbhtml files when using VB.NET as the Razor language (instead of the much more common C#). This is...

0

Chapter 25: Razor VB Loops

Razor – VB Loops and Arrays — that is, how you work with repeating content and collections (arrays, lists, etc.) when you are writing Razor pages in VB.NET (.vbhtml files). This is the VB.NET...

0

Chapter 26: Razor VB Logic

Razor – VB Logic Conditions — that is, how you write if/else decisions, switch statements, inline conditions, and null checks when you are using VB.NET inside .vbhtml Razor files. This is the VB counterpart...

0

Chapter 27: ASP Classic

ASP Classic (also called Classic ASP or just ASP), the very first Microsoft technology for building dynamic websites on the server side. This is not the same as ASP.NET, Razor, Web Pages, MVC, or...

0

Chapter 28: ASP Intro

1. Which “ASP” are we actually talking about here? There are three different technologies people call “ASP” — and W3Schools mixes two of them: Name Real name / era File extension Main language inside...