寫一個方法:
復制代碼 代碼如下:
private void DisplayAllControl(Control control, int step)
{
foreach (Control ctl in control.Controls)
{
string s = new string('-', step * 4) + ctl.GetType().Name + "〈" + ctl.ID + "〉";
Response.Write(s + "<br/>");
if (ctl.HasControls())
DisplayAllControl(ctl, step + 1);
}
}
調用:
DisplayAllControl(this.Page, 0);
執行該方法後,會在頁面中分層輸出所有控件的類型和ID值,即使是GridView、母版頁、用戶控件裡的控件也不例外。