將我在〜/ App_Code中創建的類放入App_Code程序集。ASP.NET UserControls放入什麼組件?
如果我創建以下ASP.NET用戶控件:
〜/用戶控件/ BasicUserControl.ascx
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="BasicUserControl.ascx.cs" Inherits="UserControl_BasicUserControl" %>
Hello world!
〜/用戶控件/ BasicUserControl.ascx.cs
using System;
public partial class UserControl_BasicUserControl : System.Web.UI.UserControl
{
protected void Page_Load(object sender, EventArgs e)
{
}
}
這個動態的ASP.NET UserControl會被添加到什麼程序集中?
您是否在討論預編譯該網站?這種技術在這裏解釋 - http://blogs.msdn.com/davidebb/archive/2005/10/30/487160.aspx這是唯一可用的方法嗎? – 2009-02-06 23:21:09