网络编程 
首页 > 网络编程 > 浏览文章

递归输出ASP.NET页面所有控件的类型和ID的代码

(编辑:jimmy 日期: 2024/5/20 浏览:3 次 )
写一个方法:
复制代码 代码如下:
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、母版页、用户控件里的控件也不例外。
上一篇:LiteralControl ASP.NET中的另类控件
下一篇:利用Dom操作字符串一例
友情链接:杰晶网络 DDR爱好者之家 南强小屋 黑松山资源网 白云城资源网