.NET/ASP.NET

masterpage 사용시 FindControl 이 불편하여 Reflection 으로 직접 컨트롤을 찾는다

tornado 2007. 10. 11. 14:41

               
// Reflection 으로 Field 를 찾는다.
 
FieldInfo fieldInfo = null;
Label lbl = null;

fieldInfo = this.GetType().GetField("treatmentLbl_" + i, BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.Public);

if(fieldInfo != null){
    lbl = (Label)fieldInfo.GetValue(this);
    lbl.Text = "xxx";
}