在“验证摘要”中显示动态添加的验证程序的错误消息

时间:2015-01-05 15:14:23

标签: c# asp.net

我按如下方式扩展了文本框类,以充当DateTextBox并验证字段格式:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.ComponentModel;
using System.Text;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace Myapplication.App_Code
{
    public class DateTextBox  : TextBox
    {
        private RegularExpressionValidator regexval;
        public string InvalidDate="Incorrect date format, must be dd/mm/yyyy";
        public string ClientScript = "true";

        protected override void OnInit(EventArgs e)
        {

            regexval = new RegularExpressionValidator();
            regexval.ControlToValidate = this.ID;
            regexval.ErrorMessage ="'"+this.Text+"'"+ this.InvalidDate;
            regexval.EnableClientScript = (this.ClientScript.ToLower() != "false");
            regexval.ValidationExpression = "^(0[1-9]|[12][0-9]|3[01])[-/.](0[1-9]|1[012])[-/.](19|20)\\d\\d$";
            //regexval.Text = "*Incorrect date format";
            regexval.ForeColor = System.Drawing.Color.Red;

            regexval.Display = ValidatorDisplay.None;
            Controls.Add(regexval);

            base.OnInit(e);
        }
        protected override void OnPreRender(EventArgs e)
        {
            Attributes.Add("placeholder", "dd/mm/yyyy");

            base.OnPreRender(e);
        }

        protected override void Render(HtmlTextWriter writer)
        {
            base.Render(writer);
            regexval.RenderControl(writer);
        }
    }
}

在我的aspx中,我有这个datetextbox以及其他几个具有开箱即用的必需字段验证器的控件。

这是我的aspx:

<td>
     <RE:LabelExtended runat="server" ID="lblDateOfBirth" Text="Birth Date" Required="True">
      </RE:LabelExtended>
      <asp:RequiredFieldValidator ID="ReqValDateOfBirth" runat="server" ControlToValidate="txtDateOfBirth"  ErrorMessage="Please enter Date of Birth" ForeColor="Red" Display="None"  ></asp:RequiredFieldValidator>

 </td>
 <td>
          <RE:DateTextBox runat="server" ID="txtDateOfBirth" Text='<%# Bind("DateOfBirth","{0:dd/MM/yyyy}") %>'></RE:DateTextBox>
  </td>

 <td>
     <asp:ValidationSummary ID="Tab1ValidationSummary" runat="server" ShowSummary="true" ForeColor="Red" Enabled="true"   />

   </td>

我的问题是我的DateTextBox控件中的正则表达式验证器没有在其他控件的验证摘要中显示其错误消息。 知道怎么做吗?

编辑:

我尝试在页面上给出一个验证组的所有控件,并将相同的组赋予控件中的正则表达式,这使得错误消息显示为必需,但我无法修复我的控件中的验证组因为我有几个页面使用这个控件。

1 个答案:

答案 0 :(得分:0)

找到答案here

我将Page.Validators.Add(regexval);添加到控件中,并且在没有验证组的情况下运行良好