70 likes | 282 Vues
Lifecycle examples. Supplement to segment 4. We will go through 4 scenarios. Serving a request for a static web page Lifecycle of an ASP.NET web page Lifecycle of an ASP.NET web page that interacts with the database
E N D
Lifecycle examples Supplement to segment 4
We will go through 4 scenarios • Serving a request for a static web page • Lifecycle of an ASP.NET web page • Lifecycle of an ASP.NET web page that interacts with the database • Lifecycle of an ASP.NET web page that uses session state and interacts with the database CS 638 Web Programming – Estan & Kivolowitz
HTTP request Request URL HTML file HTTP response “Lifecycle” of static web page Web server machine File system Server data Server code Web client CS 638 Web Programming – Estan & Kivolowitz
HTTP request Request URL .aspx file codebehind HTTP response Lifecycle of ASP.NET webpage Web server machine File system Server data Server code Web client HTML snippets Objects representing this web page CS 638 Web Programming – Estan & Kivolowitz
HTTP request Request URL .aspx file codebehind HTTP response SQL interaction Page with database interaction Web server machine File system Server data Server code Web client HTML snippets Database Objects representing this web page CS 638 Web Programming – Estan & Kivolowitz
HTTP request Request URL .aspx file codebehind HTTP response SQL interaction Page with session state Web server machine File system Server data Server code Web client Submitted values Viewstate Cookie HTML snippets Database Objects representing this web page CS 638 Web Programming – Estan & Kivolowitz