What assembly are ASP.NET UserControls put into? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-14T20:26:32Z http://stackoverflow.com/feeds/question/522625 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/522625/what-assembly-are-asp-net-usercontrols-put-into 0 What assembly are ASP.NET UserControls put into? Gabe 2009-02-06T23:13:38Z 2009-02-07T03:32:24Z <p>Classes I create in <strong>~/App_Code</strong> are put into the <strong>App_Code</strong> assembly.</p> <p>If I create the following ASP.NET UserControl:</p> <p><strong>~/UserControls/BasicUserControl.ascx</strong></p> <pre><code>&lt;%@ Control Language="C#" AutoEventWireup="true" CodeFile="BasicUserControl.ascx.cs" Inherits="UserControl_BasicUserControl" %&gt; Hello world! </code></pre> <p><strong>~/UserControls/BasicUserControl.ascx.cs</strong></p> <pre><code>using System; public partial class UserControl_BasicUserControl : System.Web.UI.UserControl { protected void Page_Load(object sender, EventArgs e) { } } </code></pre> <p>What assembly would this dynamic ASP.NET UserControl be added to?</p> http://stackoverflow.com/questions/522625/what-assembly-are-asp-net-usercontrols-put-into/522633#522633 2 Answer by Element for What assembly are ASP.NET UserControls put into? Element 2009-02-06T23:16:59Z 2009-02-06T23:16:59Z <p>Build your website then checkout the ASP.UserControls_BasicUserControl_ascx namespace/class</p> <p>everytime you make a change to the .ascx you will have to build the project for the changes to show up in intellisense though</p> http://stackoverflow.com/questions/522625/what-assembly-are-asp-net-usercontrols-put-into/523071#523071 0 Answer by azamsharp for What assembly are ASP.NET UserControls put into? azamsharp 2009-02-07T03:32:24Z 2009-02-07T03:32:24Z <p>If you open the newly created UserControl assembly you will realize that the namespace for the UserControl is ASP. So, this means that when registering the usercontrol on the page using the register directive you must mention the namespace as ASP. After that compile and rebuild your application and you will have the intellisense support. </p> <p>I have created a video on this scenario let me know and I will post a link. </p>