The ASP.NET Namespaces                                                                

ASP.NET is simply a subset of the .NET framework that is specifically geared towards the development of
Web applications and XML Web Services. Like any .NET technology, the types that constitute ASP.NET
are contained in a series of nested namespaces within System.Web. The core namespaces are contained within
the System.Web.dll assembly.


















System.Web.dll contains a grand total of 19 sub-namespaces! You will see many of them in action throughout
this class. However, here is a breakdown of some of the common namespaces. Consult MSDN for full details.
ASP.NET Namespaces
Table of Contents
Copyright (c) 2008.  Intertech, Inc. All Rights Reserved.  This information is to be used exclusively as an
online learning aid.  Any attempts to copy, reproduce, or use for training is strictly prohibited.
Courseware
Training Resources
Tutorials

             ASP.NET
            Namespace

                   Meaning in Life
        
  System.Web

   System.Web defines core types that enable
   browser / Web server communication (such
   as request and response capabilities, cookie
   manipulation, file transfer services, and so
   on).
 
  System.Web.Caching

  This namespace contains types that
  facilitate caching support for a Web
  application.

  System.Web.Handlers

  This namespace contains HTTP handler classes that
  process HTTP requests to a Web server.

  System.Web.Profile

  This ASP.NET namespace contains types that enable
  work with the new profile management APIs.

  System.Web.Security

  Security support for ASP.NET Web applications.

  System.Web.SessionState

  Defines numerous types that enable the development of    
  Web pages that support session variables.

  System.Web.UI
  System.Web.UI.WebControls
  System.Web.UI.HtmlControls

   These namespaces define a number of types that enable   
   the building of Graphical User Interface (GUI) front ends
   for Web applications using ASP.NET Web controls and
   HTML-based controls.  

  System.Web.UI.WebParts

   This contains types that enable the building of Web pages
   that support “Web parts” technology.
Services