コード ビハインドからプログラムで UserControl を登録 (または参照) して処理したいと考えています。私はよくグーグルで検索しましたが、UserControl を登録または参照するための便利な解決策が見つかりませんでした。
編集:
私は次のようにしました:
ASPX ページ:
<%@ Reference Control="~/ucContents.ascx" %>
ASPX ページ コード ビハインド:
Control Contents1 = null;
try
{
Contents1 = LoadControl("~/ucContents.ascx");
if (Contents1 != null)
{
((ucContents)Contents1).CatID = Request.QueryString["catid"];
}
}
catch
{ }
「コード ビハインド」でも動的に参照ジョブ (<%@ Reference Control="~/ucContents.ascx" %>) を実行できることを知りたいですか?