Developing Web Applications Using ASP.NET Objectives In this session, you will learn to: Describe user controls and the underlying enabling technologies Create user controls Describe custom Web server controls and the underlying enabling technologies Create Web server controls Describe composite controls and how composite controls are created Create composite Web server controls Describe templated controls and the interfaces that enable their implementation Create templated controls
Ver. 1.0
Slide 1 of 21
Developing Web Applications Using ASP.NET User Controls A user control usually consists of: A number of Web Server controls and HTML controls Methods and properties to control the interaction between controls included in it Code to handle the user control events
User controls are created to encapsulate reusable logic for Web pages in your application. User controls have the following features: They are saved as files with a .ascx extension. They can contain code in the .ascx file or use a code-behind file. They do not contain , , or