aspx 페이지 동적 불러오기 ascx 사용자 컨트롤

737 단어 asp
1、      

Control a = Page.LoadControl("0.ascx");
a.ID = "A0";
Controls.Add(a);

2、    ,          

Control uc = Page.LoadControl("0.ascx"); //  
Type tc = uc.GetType();  
System.Reflection.MethodInfo t = tc.GetMethod("tt"); //tt      
Response.Write(t.Invoke(uc,null));

2、    ,          ,     

Control uc = Page.LoadControl("0.ascx"); //  
Type tc = uc.GetType();  
System.Reflection.MethodInfo m = tc.GetMethod("xx"); //xx      
object[] bjParas = new object[1]; 
bjParas[0] = 1;//       
Response.Write(m.Invoke(uc, bjParas));

좋은 웹페이지 즐겨찾기