我正在为多行文本框的必填字段验证器编写 ac# 代码。
我在运行时遇到问题:
当我不会在文本框中输入任何文本时
对于第一次单击提交(按钮),它会显示错误消息
第二次点击提交它不会验证文本框并提交表单。
当我什至在文本框中输入任何文本时,同样的两个问题。
总的来说,它没有验证...
请帮助我了解以下代码中可能存在的错误。
txtReport = new InputFormTextBox();
txtReport.TextMode = TextBoxMode.MultiLine;
txtReport.RichText = true;
txtReport.RichTextMode = SPRichTextMode.Compatible;
txtReport.Rows = 5;
txtReport.Width = new Unit(200);
txtReport.ID = "txtReport";
txtReport.Text.Trim();
this.Controls.Add(txtReport);
reqVal = new RequiredFieldValidator();
reqVal.ID = "reqVal";
reqVal.ControlToValidate = txtReport.ID;
reqVal.SetFocusOnError = true;
reqVal.ErrorMessage = "*Comments field is mandatory";
reqVal.Enabled = true;
this.Controls.Add(reqVal);
提前致谢