用户控件的动态加载

//Load
UserControl c1 = (UserControl)LoadControl("ucCheckBoxGroup.ascx");
c1.ID 
= "_UserGroups";
//Set Property
Type c1Type = c1.GetType();
System.Reflection.PropertyInfo c1PInfor 
= c1Type.GetProperty("ConnectionString");
c1PInfor.SetValue(c1,strConn, 
null);
//display
//Page.Controls.Add(c1)
C.Controls.Add(c1);


原文地址:https://www.cnblogs.com/lfzwenzhu/p/1802631.html