'trace'에 해당되는 글 1건

  1. 2009.09.15 Form 요소에서 컨트롤 찾가

Form 요소에서 컨트롤 찾가

.Net 2009. 9. 15. 11:11 posted by 무명시인

if (this.Form.HasControls())
{
 Response.Write("HasControls ; " + this.Form.Controls.Count + "
"); Response.Write("
"); for (int i = 0; i < this.Form.Controls.Count; i++) { Control ctl = this.Form.Controls[i]; Response.Write(i.ToString() + " ; " + ctl.GetType() + " -> clientid : " + ctl.ClientID + "
"); } } else { Response.Write("No HasControls"); }

---------------------------------------------------------------------------------------
 Trace = true 로 설정후 확인한다.