Category: ASP

0

ASP Home

What is ASP Home? Let me explain it very clearly, step by step, like we’re sitting together with a cup of chai and I’m drawing on a whiteboard. 1. Where do you usually see...

0

WP Tutorial

1. Where do you see “WP Tutorial”? Open this page right now (or imagine it): https://www.w3schools.com/asp/default.asp ← that’s the ASP HOME page we talked about last time. Look at the left sidebar or the...

0

Chapter 1: Web Pages Intro

First: What exactly is ASP.NET Web Pages? ASP.NET Web Pages is a simple, beginner-friendly programming model created by Microsoft (around 2010–2012) for building dynamic websites using the ASP.NET platform. Think of it as the...

0

Chapter 2: WebPages Razor

WebPages Razor” (or in full: ASP.NET Web Pages – Adding Razor Code). This is the key chapter where they teach you how to actually add and write server-side code inside your .cshtml pages using...

0

Chapter 3: WebPages Layout

What is Page Layout in ASP.NET Web Pages? It’s a system to create a consistent look and structure across all (or many) pages using: One layout template file (usually named _Layout.cshtml) Content pages that...

0

Chapter 4: Web Pages Folders

WebPages Folders” (full title: ASP.NET Web Pages – Folders). This lesson teaches you how folders work in an ASP.NET Web Pages site — not just “make a folder and put files in it”, but...

0

Chapter 5: WebPages Global

WebPages Global” (full name in the tutorial flow: ASP.NET Web Pages – Global Pages or Global Files). This lesson covers two special protected files that let you run code globally (site-wide or folder-wide) without...

0

Chapter 6: WebPages Forms

WebPages Forms in the W3Schools WP Tutorial menu). This is where your pages stop being just “display stuff” and start interacting with users — collecting names, choices, messages, and making decisions based on what they...

0

Chapter 7: WebPages Objects

WebPages Objects (exactly the title in the W3Schools menu: “WebPages Objects”). This lesson is all about the built-in objects that are always available to you in every .cshtml page. You don’t create them —...

0

Chapter 8: WebPages Files

Web Pages – Files (exactly the section titled “WebPages Files” in the W3Schools WP Tutorial menu). This is where we move from displaying static or form-based content to actually reading data from files on...