1 / 5

How an ASP.NET page is “built”

How an ASP.NET page is “built”. (Lab exercise 1 as an example). When the application initially loads…. Start. Execute Page_Load (). Create the HTML page. Viewable in browser. End. Execute populateRadio (). IIS receives a request from the browser….

chaka
Download Presentation

How an ASP.NET page is “built”

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. How an ASP.NET page is “built” (Lab exercise 1 as an example)

  2. When the application initially loads… Start Execute Page_Load() Create the HTML page Viewable in browser End Execute populateRadio() IIS receives a request from the browser… IIS integrates output into the HTML page HTML is rendered by the browser .NET executes the C# code

  3. When you click on RadioButtonList1… Start Execute Page_Load() Create the HTML page Viewable in browser End Execute RadioButtonList1_SelectedIndexChanged() IIS receives a request from the browser… IIS integrates output into the rest of the HTML page HTML is rendered by the browser .NET executes the C# code

  4. When you click on RadioButtonList2… Start Execute Page_Load() Create the HTML page Viewable in browser End Execute RadioButtonList2_SelectedIndexChanged() IIS receives a request from the browser… IIS integrates output into the rest of the HTML page HTML is rendered by the browser .NET executes the C# code

  5. When you click on Button1… Start Execute Page_Load() Create the HTML page Viewable in browser End Execute Button1_Click() IIS receives a request from the browser… IIS integrates output into the rest of the HTML page HTML is rendered by the browser .NET executes the C# code

More Related