我有WebForm1.aspx;
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebApplication1.WebForm1" %>
<%@ Register Src="~/WebUserControl1.ascx" TagName="Deneme" TagPrefix="UserControl" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<UserControl:Deneme ID="oDeneme" runat="server" />
<br />
<asp:PlaceHolder ID="dynamicUC" runat="server"></asp:PlaceHolder>
</div>
</form>
</body>
</html>
WebUserControl1.ascx;
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="WebUserControl1.ascx.cs"
Inherits="WebApplication1.WebUserControl1" %>
<asp:Panel ID="pnlTest" runat="server">
<asp:Label ID="lblTest" runat="server">
Hello World
</asp:Label>
</asp:Panel>
我在aspx页面后面的代码中动态加载这个usercontrol;
public partial class WebForm1 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
dynamicUC.Controls.Add(Page.LoadControl("~/WebUserControl1.ascx"));
}
}
如何找到用户控件的加载源?
我的意思是,当加载用户控件时,我想知道是从标记样式加载的用户控件(在我的示例中; <UserControl:Deneme ...>
或者在代码隐藏中动态加载(在我的示例中为dynamicUC.Controls.Add(Page.LoadControl("~/WebUserControl1.ascx"))
)。