文本框验证仅在第一轮时有效

时间:2015-01-20 11:47:10

标签: c# asp.net validation textbox

使用以下代码点击按钮后,我正在检查空白文本框:

if (address1Txt.Text.Trim().Length != 0 || address2Txt.Text.Trim().Length != 0 || postcodeTxt.Text.Trim().Length != 0)
{
    if (boardTypeDropDown.SelectedValue.ToString() != "")
    {
                 ...
    else
    {
        errorLbl.Text = "please select a board type";
    }
}
else
{
    errorLbl.Text = "please enter a value";
}

我第一次使用它时起作用。但是,当我执行以下操作时,它似乎无法验证文本框:

  1. 输入有效输入
  2. 按下按钮
  3. 删除值
  4. 按下按钮(无错误标签)
  5. 如果我取消选择下拉框值,也一样。

0 个答案:

没有答案