What assembly are ASP.NET UserControls put into? - Stack Overflow most recent 30 from stackoverflow.com2009-12-14T20:26:32Zhttp://stackoverflow.com/feeds/question/522625http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/522625/what-assembly-are-asp-net-usercontrols-put-into0What assembly are ASP.NET UserControls put into?Gabe2009-02-06T23:13:38Z2009-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><%@ Control Language="C#" AutoEventWireup="true" CodeFile="BasicUserControl.ascx.cs" Inherits="UserControl_BasicUserControl" %>
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#5226332Answer by Element for What assembly are ASP.NET UserControls put into?Element2009-02-06T23:16:59Z2009-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#5230710Answer by azamsharp for What assembly are ASP.NET UserControls put into?azamsharp2009-02-07T03:32:24Z2009-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>