1 / 3

Understanding ASP.NET Components: HTTP Requests, Web Forms, and Compilation Process

Dive into the architecture of ASP.NET with a focus on its core components, including how HTTP requests are handled by web servers. Learn about ASP.NET pages and the code-behind model, where functionality is separated from HTML markup. This overview discusses the compilation process of ASP.NET applications, detailing the .NET framework’s role and the structure of class files within applications. Gain insights on configurations for various deployment scenarios and the interaction between the server and client through web browsers, ensuring a comprehensive understanding of ASP.NET development.

rene
Télécharger la présentation

Understanding ASP.NET Components: HTTP Requests, Web Forms, and Compilation Process

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. ASP.NET Components Internet Information Services Server 1 2 HTTP request ASP.NET code Web server (serves web pages) ASP.NET processor (executescode) HTML Output 3 4 .NET Framework Original HTML code integrated with ASP output Web browser Server Client

  2. ASP.NET Configurations Multiple computer configuration Single computer configuration Client Client Web browser Web browser Server Web server ASP.NET processor Web server ASP.NET processor .NET Framework .NET Framework

  3. How an ASP.NET application is compiled form1.aspx form1.aspx.cs Other classes Web form Code-behind form (partial class) Class files in App_Code folder The top line is the stuff you code. ASP.NET runtime Compiler Application class (dll) (C# code) Web formASP.NET code GeneratedC# code(partial class) Compiler Initializes form/gen. HTML Object declarations This is the component that actually gets processed when an aspx file is requested. Web form class (dll)(ASP code) Other classes(dll) Compiler Supporting object classes are here. From Murach, M. and Boehm, A. “ASP.NET 2.0 Web Programming with C# 2005,” 2006, page 27.

More Related