ASP.NET(C#)中遍历所有控件
程序员文章站
2024-03-11 10:41:13
复制代码 代码如下:for (int i = 0; i < this.controls.count; i++) { foreach (system.web.ui.co...
复制代码 代码如下:
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 = "";
}
}
上一篇: Kubernetes Service
下一篇: Python-group()
推荐阅读
-
ASP.NET(C#)中遍历所有控件
-
asp.net 用户控件中图片及样式问题
-
asp.net 简单实现禁用或启用页面中的某一类型的控件
-
asp.net 使用ObjectDataSource控件在ASP.NET中实现Ajax真分页
-
asp.net GridView控件中模板列CheckBox全选、反选、取消
-
在asp.net(C#)中采用自定义标签和XML、XSL显示数据
-
ASP.NET(C#)中操作SQLite数据库实例
-
asp.net(C#) 动态添加非ASP的标准html控件(如添加Script标签)
-
ASP.NET 页面中动态增加的控件、添加事件第1/2页
-
ASP.NET(C#)中遍历所有控件