[ASP.NET] What are the differences between User Controls, Server Controls & Custom Controls? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T02:44:47Z http://stackoverflow.com/feeds/question/994009 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/994009/asp-net-what-are-the-differences-between-user-controls-server-controls-custo 1 [ASP.NET] What are the differences between User Controls, Server Controls & Custom Controls? iaman00b 2009-06-14T23:13:53Z 2009-06-14T23:30:46Z <p>I thought I had reasonable answers for this question at a recent interview, but I bombed it. :(</p> <ul> <li>What are the major differences between the three?</li> <li>If not obvious by the answer to the previous bullet, when would you choose one over the other?</li> </ul> http://stackoverflow.com/questions/994009/asp-net-what-are-the-differences-between-user-controls-server-controls-custo/994027#994027 6 Answer by Josh for [ASP.NET] What are the differences between User Controls, Server Controls & Custom Controls? Josh 2009-06-14T23:23:24Z 2009-06-14T23:23:24Z <ul> <li><p>User Controls are controls built with a designer within a web project. They typically are only private to a web application (Although there are ways you can make them available to other projects). </p></li> <li><p>Server Controls are controls that are also known as Web Controls. These are reusable controls that render their html without the aid of a designer, they are created in a seperate assembly from the web application, are appropiate for controls which will be used in many different web applications</p></li> <li><p>Composite Controls are a sub type of Web Controls and are controls which are made up (composed) of other web controls.</p></li> </ul> <p>I've never heard of a custom control to mean anything other then a control which is custom built by you or your team. And it could include user, web or composite controls.</p> http://stackoverflow.com/questions/994009/asp-net-what-are-the-differences-between-user-controls-server-controls-custo/994030#994030 1 Answer by Robert Harvey for [ASP.NET] What are the differences between User Controls, Server Controls & Custom Controls? Robert Harvey 2009-06-14T23:24:05Z 2009-06-15T04:17:19Z <p>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.</p> <p>User controls are registered with the web page in which they are used, like this:</p> <pre><code>&lt;%@ Register TagPrefix="UC" TagName="TestControl" Src="test.ascx" %&gt; </code></pre> <p>They are then declared in the web page they are to be used in, like this:</p> <pre><code>&lt;UC:TestControl id="Test1" runat="server"/&gt; </code></pre> <p>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</p> <pre><code>System.Web.UI.WebControls.WebControl </code></pre> <p>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.</p> <p><a href="http://support.microsoft.com/kb/893667" rel="nofollow">http://support.microsoft.com/kb/893667</a></p>