怎么样遍历webform的所有控件
1个回答
展开全部
代码
private void GetControls(Control c)
{
Response.Write(c.GetType().FullName+"<br>");
for (int i = 0; i < c.Controls.Count; i++)
{
GetControls(c.Controls[i]);
}
}
protected void Page_Load(object sender, EventArgs e)
{
GetControls(this);
}
private void GetControls(Control c)
{
Response.Write(c.GetType().FullName+"<br>");
for (int i = 0; i < c.Controls.Count; i++)
{
GetControls(c.Controls[i]);
}
}
protected void Page_Load(object sender, EventArgs e)
{
GetControls(this);
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询