50 likes | 146 Vues
This exercise demonstrates a step-by-step guide on how an ASP.NET page is built. Learn about executing code, integrating with IIS, rendering HTML, and handling various user interactions in ASP.NET.
E N D
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… IIS integrates output into the HTML page HTML is rendered by the browser .NET executes the C# code
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
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
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