This document provides an introduction to creating web applications using ASP.NET. It discusses using Visual Studio to create an ASP.NET project with an ASPX file and code-behind file. The ASPX file contains the user interface markup, while the code-behind file contains the C# code. It provides an example ASPX file called WebTime.aspx that displays the current time. When this page loads, the Page_Init method in the code-behind file retrieves the current time and displays it in a Label control. The document outlines the ASP.NET page lifecycle and how to view the generated XHTML.