使用者控制元件的動態載入

iDotNetSpace發表於2010-08-19
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--&gt//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);

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12639172/viewspace-671381/,如需轉載,請註明出處,否則將追究法律責任。

相關文章