Author: web-admin

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...

0

Chapter 29: ASP Syntax

1. What is “ASP Syntax” really about? ASP Syntax = the rules that tell the server how to separate: normal HTML (which is sent to the browser unchanged) server-side code (which runs on the...