1 / 3

Web server (serves web pages)

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

rene
Download Presentation

Web server (serves web pages)

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