what is namespace

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ubaid ur rahman
    New Member
    • Sep 2010
    • 2

    what is namespace

    what is asp.net lifecycle and what is namespace
  • NareshN
    New Member
    • Aug 2010
    • 45

    #2
    Namespace

    Hi,

    Namespace is logical collection of classes.

    Comment

    • Frinavale
      Recognized Expert Expert
      • Oct 2006
      • 9749

      #3
      The ASP.NET Life Cycle is the stages that the asp.net page code is executed in every request.

      When a request for an aspx page is made the following steps happen in your page code:
      1. Objects required to process the page are created and loaded with data
      2. The Page Load event occurrs
      3. Page validation occurrs
      4. Any postback event code is executed (eg button click events or drop down list selected index changed events...etc)
      5. The PreRender event is fired (this is your last chance to access the controls on your page)
      6. The Render event is fired (all of the controls are rendered as HTML and the response is sent to the browser)
      7. The Unload event occurrs: all of the objects are destroyed.


      Check out this MSDN article about Understanding and Using Assemblies and Namespaces in .NET for more information about namespaces.

      -Frinny

      Comment

      Working...