
May 12th, 2004, 07:56 AM
|
|
Utility Bot
|
|
Join Date: Feb 2004
Posts: 875
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
Article Discussion: ASP.NET Life Cycle and Best Practices
When a page request is sent to the Web server, whether through a submission or location change, the page is run through a series of events during its creation and disposal. When we try to build ASP.NET pages and this execution cycle is not taken into account, we can cause a lot of headaches for ourselves. However, when used and manipulated correctly, a page's execution cycle can be an effective and powerful tool. Many developers are realizing that understanding what happens and when it happens is crucial to effectively writing ASP.NET pages or user controls. So let's examine in detail the ten events of an ASP.NET page, from creation to disposal. We will also see how to tap into these events to implant our own custom code and what the best practices for ASP.Net coding are.
Read the full article here: ASP.NET Life Cycle and Best Practices
|