//user control 의 파일 경로로 UserControl 객체에 담는다.
UserControl usercontrol = (UserControl)LoadControl("WebUserControl.ascx");
//user control 형식을 가져온다.
Type controlType = usercontrol.GetType();
//속성의 특성을 검색하고, 속성 메타데이터에 대해 엑세스 한다.
//여기서 "Text" 는 user control 에 존재하는 프로퍼티명 중 하나 이다. 속성의 타입은 string 형이다.
System.Reflection.PropertyInfo controlPropertyInfo = controlType.GetProperty("Text");
//프로퍼티 속성의 type 을 알고, 거기에 맞게 값을 할당한다.
controlPropertyInfo.SetValue(usercontrol, "심재운 천재", null);
//Placeholder 서버컨트롤에 바인딩 한다.
this.PHClass.Controls.Add(usercontrol);