我有自定义控件,里面有ASP文本框。

我需要通过RequiredFieldValidator验证我在CLIENT端的自定义控件。



我将属性添加到自定义控件类:

[ValidationProperty("Text")]
    public class WatermarkTextBox : System.Web.UI.UserControl
{
}


看起来像在工作,但总是使提交到服务器。我如何只在客户端上检查它?

最佳答案

您需要像这样使用CustomValidator

<asp:CustomValidator ID="CustomValidator1" runat="server" ClientValidationFunction="ValidateCheckBox"
ErrorMessage="Please enter something.">


ClientValidationFunction是您的javascript函数的名称

关于c# - 带有自定义控件的asp.net RequiredFieldValidator,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2980358/

10-13 08:19