遍历当前页面控件
时间:2010-09-16 来源:暗※空
代码
1 private void Check(ControlCollection controlCollection, string txtID)
2 {
3 foreach (Control item in controlCollection)
4 {
5
6 if (item is TextBox)
7 {
8 if (item.ID == txtID)
9 {
10 ((TextBox)item).Text = txtVaule;
11 }
12 }
13 else if (item is HtmlInputCheckBox)
14 {
15 if (item.ID==txtID)
16 {
17 ((HtmlInputCheckBox)item).Checked = true;
18 }
19 }
20 if (item.HasControls())
21 {
22 Check(item.Controls, txtID);
23 }
24 }
25
相关阅读 更多 +