递归输出ASP.NET页面所有控件的类型和ID的代码
更新时间:2012年01月12日 01:14:53 作者:
递归输出ASP.NET页面所有控件的类型和ID的代码,需要的朋友可以参考下。
写一个方法:
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、母版页、用户控件里的控件也不例外。
复制代码 代码如下:
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递归循环子节点生成树形菜单实例
相关文章
ASP.NET Core 6框架揭秘实例演示之如何承载你的后台服务
这篇文章主要介绍了ASP.NET Core 6框架揭秘实例演示之如何承载你的后台服务,主要包括利用承载服务收集性能指标、依赖注入的应用、配置选项的应用等知识点,本文给大家介绍的非常详细,需要的朋友可以参考下2022-03-03
最新评论