Post Undeleted by Robert Harvey
    Post Deleted by Robert Harvey
show/hide this revision's text 2 added 291 characters in body

A User Control is a partial web page, created in the same way as any other web page in ASP.NET, except that it has an .ASCX extension, and it can be embedded in your other ASPX pages.

User controls are registered with the web page in which they are used, like this:

<%@ Register TagPrefix="UC" TagName="TestControl" Src="test.ascx" %>

They are then declared in the web page they are to be used in, like this:

<UC:TestControl id="Test1" runat="server"/>

Custom controls are compiled code components that execute on the server, expose the object model, and render markup text, such as HTML or XML, as a normal Web Form or user control does. Custom controls are written in C# or VB, and are derived from the class

System.Web.UI.WebControls.WebControl

Server controls are controls that execute on the server and render markup to the browser. User controls and custom controls are both examples of server controls.

http://support.microsoft.com/kb/893667

show/hide this revision's text 1