【 tulaoshi.com - ASP.NET 】
遍历当前页的的控件的方法和用途有很多,如定位datagrid中的checkbox...
但是要是遍历当前页的所有控件,有人说是foreach (object c in PageControls),其实这样是不行的
你可以Response.Write(c.GetType().Name.ToString()+"
");看看.(估计在不采用代码隐藏时候行)
经过下午的询问和研究,在不采用代码隐藏的时候很简单,直接
foreach (object c in hf.Controls),其中hf就是form的id
但是在代码隐藏的时候得采用
cs.
protected System.Web.UI.WebControls.CheckBox CheckBox1; protected System.Web.UI.WebControls.CheckBox CheckBox2; protected System.Web.UI.WebControls.CheckBox CheckBox3; protected System.Web.UI.WebControls.CheckBox CheckBox4; protected System.Web.UI.WebControls.TextBox TextBox1; protected HtmlForm hf; private void Page_Load(object sender, System.EventArgs e) {
foreach (object c in hf.Controls) { if(c is CheckBox) { Response.Write(c.GetType().Name.ToString()+"
"); CheckBox cb=(CheckBox)c; cb.Checked=this.CheckBox4.Checked; } } }
aspx
如果不加 protected HtmlForm hf;
则提示你找不到hf,他不象其他的控件一样 protected System.Web.UI.WebControls.CheckBox CheckBox2;被先类型话,就是html控件在vs.net中的cs里不类型化.你得找到他的哪个命名空间.