This question shows research effort; it is useful and clear
1
This question does not show any research effort; it is unclear or not useful
Bookmark this question.
Show activity on this post.
実行時に、Control フォルダーから aspx ページにユーザー コントロールをロードしたい ID に基づいて、5 つのユーザー コントロールをいくつかの Control フォルダーに配置しました。実行時にどのユーザー コントロールを div にロードするかを修正するために、その ID を渡す方法を教えてください。
UserControl uc = new UserControl();
string ID = "1";
string userControl ="UC" + ID + ".ascx";
uc = LoadControl(userControl) as UserControl;
PlaceHolder1.Controls.Add(uc); //some place holder to place controls