Attention: We are retiring the ASP.NET Community Blogs. Learn more >

Control Adapters

For customizing the behavior for a page or control, ASP.NET 2.0 lets you specify a ControlAdapter object that adapts or modifies behavior at key points in the life cycle of the control. At each stage in the life cycle, where a call to a life cycle method is made, the ASP.NET page framework checks to see if there is an associated adapter for the control and calls on the adapter's associated method instead of the control's method. In many cases, the adapter method may simply defer back to the control's method. An exception to this behavior are adapters for state management in that the adaptive behavior is additive to the control's state. for more info goto:

1. Architectural Overview of Adaptive Control Behavior

2. CSS friendly ASP.NET 2.0 control adapters Beta 1.1

30 Comments

Comments have been disabled for this content.