web form 上面几个textbox 要检查全部的textbox是否有值
foreach (Control ctrl in this.Controls)
{
if (ctrl is TextBox)
{
TextBox objTextBox = ctrl as TextBox;
if (String.IsNullOrEmpty(objTextBox.Text))
{
Label1.Text = "empty";
}
}
}
debug 发现 第一个if 这边判断都是FALSE 没跑进去执行
请问哪边有问题? 谢谢指导~