Classes I create in ~/App_Code are put into the App_Code assembly.
If I create the following ASP.NET UserControl:
~/UserControls/BasicUserControl.ascx
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="BasicUserControl.ascx.cs" Inherits="UserControl_BasicUserControl" %>
Hello world!
~/UserControls/BasicUserControl.ascx.cs
using System;
public partial class UserControl_BasicUserControl : System.Web.UI.UserControl
{
protected void Page_Load(object sender, EventArgs e)
{
}
}
What assembly would this dynamic ASP.NET UserControl be added to?