用户控件的动态加载

// 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);


你可能感兴趣的:(用户)