写一个方法:
复制代码 代码如下:
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、母版页、用户控件里的控件也不例外。
您可能感兴趣的文章:- Jquery.TreeView结合ASP.Net和数据库生成菜单导航条
- ASP.NET生成树形显示的GridView实现思路
- 常用的在数据库中建立无限级树形菜单的asp.net代码
- asp.net 获取指定文件夹下所有子目录及文件(树形)
- asp.net实现递归方法取出菜单并显示在DropDownList中(分栏形式)
- ASP.NET递归法求阶乘解决思路
- asp.net实现DropDownList,TreeView,ListBox的无限极分类目录树
- asp.net TreeView与XML三步生成列表树
- Asp.net treeview实现无限级树实现代码
- asp.net TreeView递归循环子节点生成树形菜单实例