DekGenius.com
[ Team LiB ] Previous Section Next Section

MobileUserControl.NET 1.1, disposable

System.Web.UI.MobileControls (system.web.mobile.dll)class

This class represents a mobile user control, or .ascx file. Mobile user controls play the exact same role as web form user controls (as represented by the System.Web.UI.UserControl class), allowing you to share commonly used portions of the user interface. Mobile user controls are similar to mobile pages, and can contain mobile controls and event handling logic. They are instantiated and cached in much the same was as MobilePage objects, and contain many of the same properties. The difference is that user controls must be situated inside a page.

public class MobileUserControl : System.Web.UI.UserControl {
// Public Constructors
   public MobileUserControl( );
// Protected Instance Methods
   protected override void AddParsedSubObject(object o);        // overrides System.Web.UI.Control
}

Hierarchy

System.Object System.Web.UI.Control(System.ComponentModel.IComponent, System.IDisposable, System.Web.UI.IParserAccessor, System.Web.UI.IDataBindingsAccessor) System.Web.UI.TemplateControl(System.Web.UI.INamingContainer) System.Web.UI.UserControl(System.Web.UI.IAttributeAccessor, System.Web.UI.IUserControlDesignerAccessor) MobileUserControl

    [ Team LiB ] Previous Section Next Section