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

ASP.NET(C#)中遍历所有控件

(编辑:jimmy 日期: 2024/11/15 浏览:3 次 )
复制代码 代码如下:
for (int i = 0; i < this.Controls.Count; i++)
{
foreach (System.Web.UI.Control control in this.Controls[i].Controls)
{
if (control is TextBox)
(control as TextBox).Text = "";
}
}
foreach (Control cl in this.Page.FindControl("Form1").Controls)
{
if (cl.GetType().ToString() == "System.Web.UI.WebControls.TextBox")
{
((TextBox)cl).Text = "";
}
}
上一篇:通过ASP.net实现flash对数据库的访问
下一篇:ASP.NET生成Google网站地图的代码
友情链接:杰晶网络 DDR爱好者之家 南强小屋 黑松山资源网 白云城资源网 网站地图 SiteMap