ASP.NET
  Home arrow ASP.NET arrow Page 3 - ASP.NET Architecture, Part 1
ASP Free Forums 
.NET  
ASP  
ASP Code  
ASP.NET  
ASP.NET Code  
BrainDump  
C#  
Code Examples  
Database  
Database Code  
IIS  
Microsoft Access  
MS SQL Server  
Visual Basic.NET  
Windows Scripting  
Windows Security  
XML  
ASP Web Hosting  
ASP.NET Web Hosting 
Mobile Linux 
App Generation ROI 
Windows Web Hosting
 
IBM® developerWorks 
Sun Developer Network 
Weekly Newsletter
 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
ASP.NET

ASP.NET Architecture, Part 1
By: McGraw-Hill/Osborne
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 4 stars4 stars4 stars4 stars4 stars / 25
    2004-02-23

    Table of Contents:
  • ASP.NET Architecture, Part 1
  • ASP.NET Namespaces
  • System.Web.UI Namespace Classes
  • System.Web.UI Namespace Interface, Enumerations, and Delegates
  • ASP.NET Page Class
  • An ASP.NET Page's Life Cycle
  • Applying Page Directives
  • Code-Behind Feature

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT


    ASP.NET Architecture, Part 1 - System.Web.UI Namespace Classes


    (Page 3 of 8 )

    This table provides a complete list of System.Web.UI classes:

    Class

    Description

    Attribute Collection

    Provides all object-model access declared in the openingtag of an ASP.NET server control element. The class cannot be inherited.

    BaseParser

    Offers a base set of functionality for classes involvedin parsing ASP.NET page requests as well as server controls.

    ConstructorNeedsTagAttribute

    Requires a tag name in the server control constructor.

    Control

    Defines all properties, methods, and events shared by all ASP.NET server controls.

    ControlBuilder

    Supports the page parser in constructing a control and its child controls.

    ControlBuilderAttribute

    Specifies a ControlBuilderClass for constructing a custom control within the parser. The class cannot be inherited.

    ControlCollection

    Provides a collection container for ASP.NET to maintain a list of its child controls.

    CssStyleCollection

    Contains the HTML cascading style sheets inline style attributes for a specified HTML server control.

    DataBinder

    Lends support for RAD developers to generate and parse data-binding expression syntax. This class cannot be inherited.

    DataBinding

    Contains information about a single data-binding expression in a server control. This feature enhances RAD development and allows developers to create data-binding expressions at design time.

    DataBindingCollection

    Provides a collection of DataBinding objects for an ASP.NET server control. This class cannot be inherited.

    DataBindingHandlerAttribute

    Defines a design-time class that performs control data binding within a designer. This class cannot be inherited.

    DataBoundLiteralControl

    Creates a control for HTML text to enable handling of <% %> data-binding expressions processed by the ASP.NET server. This class cannot be inherited.

    EmptyControlCollection

    Lends support for an empty control collection.

    HTML32TextWriter

    Provides a text writer for ASP.NET pages and server controls that render HTML content for HTML 3.2 clients.

    HTMLTextWriter

    Writes a sequential series of HTML-specific characters

    and text to a web forms page. The class enables formatting capabilities used by ASP.NET server controls when rendering HTML content to clients.

    ImageClickEventArgs

    Provides information for events occurring when a client clicks on an image-based server control. This class cannot be inherited.

    LiteralControl

    Represents HTML elements, text, and other strings on an ASP.NET page not requiring server-side processing.

    LosFormatter

    Serializes the view state for a web forms page. This class cannot be inherited.

    . This class cannot be inherited.

    Page

    Defines an .aspx file or a web forms page. All other pages derive from the ASP.NET page class in the System.Web.UI namespace.

    Pair

    Contains two objects that can both be added to an ASP.NET server control’s view state.

    ParseChildrenAttribute

    Defines a metadata attribute that a developer uses when developing ASP.NET server controls. Use this attribute to indicate whether XML elements embedded within the ASP.NET server control’s tags should be treated either as properties or as children when the control is used declaratively on a page control. This class cannot be inherited.

    PartialCachingAttribute

    Represents a class created when a user control (.ascx file) is specified for output caching, using either the @ OutputCache directive or the PartialCachingAttribute, and is added to the page programmatically.

    PersistChildrenAttribute

    Defines a metadata attribute utilized by ASP.NET server controls. The attribute specifies whether, at design time, the child controls of an ASP.NET server control should be persisted as nested inner controls. This class cannot be inherited.

    PersistenceModeAttribute

    Defines a metadata attribute that specifies how an ASP.NET server control property or event is persisted to an ASP.NET page. This class cannot be inherited.

    PropertyConverter

    Contains helper functions to convert property values to and from strings.

    StateBag

    Manages the view state of ASP.NET server controls, including pages. This class cannot be inherited.

    StateItem

    Represents an item that is saved in the StateBag class when view state information is persisted between web requests. This class cannot be inherited.

    StaticPartialCachingControl

    Represents an instance of the UserControl class when it has been specified for output caching and included declaratively in a page or another user control.

    TagPrefixAttribute

    Defines the tag prefix used in a web page to identify controls. This class cannot be inherited.

    TemplateBuilder

    Supports the page parser when constructing a template and child controls that it contains.

    TemplateContainerAttribute

    Declares the type of the INamingContainer that will contain the template once it is created.

    TemplateControl

    Provides the Page class and the UserControl class with a base set of functionality.

    ToolboxDataAttribute

    Specifies the default tag generated for a custom control when it is dragged from a toolbox in a tool, for example, Visual Studio.

    Triplet

    Holds three objects that can all be added to an ASP.NET server control’s view state.

    UserControl

    Represents an .ascx file, requested from a server that hosts an ASP.NET web application. The file must be called from a web forms page, or a parser error will occur.

    UserControl ControlBuilder

    Supports the page parser when constructing a user control and any child user controls that it contains.

    ValidationPropertyAttribute

    Defines the metadata attribute used by ASP.NET server controls to identify a validation property. This class cannot be inherited.

    ValidationCollection

    Exposes an array of IValidator references. This class cannot be inherited.

    Come back this Friday, 27/02/2004, for part two of ASP.NET Architecture. This is chapter six of .NET & J2EE Interoperability, by Dwight Peltzer (McGraw-Hill/Osborne, ISBN 0-07-223054-1, 2004).
    Buy this book now.

    More ASP.NET Articles
    More By McGraw-Hill/Osborne


     

    ASP.NET ARTICLES

    - Developing a Mini ASP.NET AJAX Server Centri...
    - Disadvantages of the ASP.NET MVC Framework
    - Advantages of the ASP.NET MVC Approach
    - ASP.NET Web Forms Weaknesses
    - ASP.NET Web Forms Meets ASP.NET MVC
    - Source Code for Saving and Retrieving Data w...
    - Using GridView to Save and Retrieve Data wit...
    - Handling Dynamic Images in ASP.NET 3.5 AJAX ...
    - Retrieving Data with AJAX and the GridView C...
    - Playing with Images in ASP.NET 3.5 AJAX Appl...
    - Saving and Retrieving Data with AJAX
    - Enhancing PHP Via the ASP.NET AJAX Framework...
    - Enhancing PHP Programming with the ASP.NET A...
    - Classes and ASP.NET AJAX
    - Using ASP.NET AJAX

     
    Best Practices for Windows Vista Migration Presentation
    Dell and Microsoft recently held a series of face-to-face seminars entitled, &qu....

     
    Creating a Culture for Code Reuse
    If you oversee development teams you know that like it or not proprietary and ex....

     
    Keys to Web Application Acceleration: Advances in Delivery Systems
    Accelerate Web apps by up to 5x. Ensure significantly faster access to the Web a....

     
    Optimizing Application Monitoring
    Tired of finding out from your customers that you're offline? This white paper e....

     
    Solaris to Solaris Migration -- Migrating applications from Sun SPARC to Dell PowerEdge R900
    This comprehensive Migration Guide reviews the approach that Principled Technolo....

     




    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 5 hosted by Hostway
    Stay green...Green IT