// 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";
}
'.NET > ASP.NET' 카테고리의 다른 글
[ASP.NET] Response.End, Response.Redirect 또는 Server.Transfer를 사용하면 ThreadAbortException이 발생한다 (0) | 2008.04.18 |
---|---|
[ASP.NET] HtmlTable 에 CSS CLASS 지정 (0) | 2008.02.27 |
CrystalReport DataSet Binding.. (0) | 2006.12.18 |
[ajax.net] UpdatePanel: having fun with errors (0) | 2006.11.27 |
ajax.net beta2 에서 UpdatePanel Exception Handling 예제 (0) | 2006.11.27 |