明輝手游網(wǎng)中心:是一個免費提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺!

如何用foreach遍歷頁面上所有的TextBox

[摘要]1.整個頁面的判斷 foreach(Control ctl in this.Controls[1].Controls){ if(ctl.GetType().Name=="TextBox") { TextBox tb =new TextBox(); tb=(TextBox)t...
1.整個頁面的判斷

foreach(Control ctl in this.Controls[1].Controls)
{
 if(ctl.GetType().Name=="TextBox")
 {
  TextBox tb =new TextBox();
  tb=(TextBox)this.FindControl(ctl.ID);
  
  if(tb.Text==string.Empty)
  {
   Response.Write("<script>alert('" + ctl.ID + "的值為空。');</script>");
   break;
  }
 }
}

2.指定formID里TextBox 判斷

先找出你的Form的ID
protected HtmlForm yourformID;

foreach (object obj in yourformID.Controls)
{
   if (obj is TextBox)
   {
      TextBox tb = (TextBox)obj;
      if (tb.Text = string.Empty)
      {
          Response.Write("<script>alert('" + tb.ID + "的值為空。');</script>;")
      }
   }
}