如何扩展compareValidator以便我可以检查,如果用户在ControlToValidate中写了一些文本,那么他也必须在ControlToCompare中写一些文本。
答案 0 :(得分:1)
尝试:
public class ExtendedCompareValidator : CompareValidator
{
protected override void OnPreRender(EventArgs e)
{
if (!string.IsNullOrEmpty(this.ControlToValidate) && string.IsNullOrEmpty(this.ControlToCompare))
throw new HttpException("You have to set the 'ControlToCompare' property.");
base.OnPreRender(e);
}
}
<强>的Web.Config 强>
<pages>
<tagMapping>
<add tagType="System.Web.UI.WebControls.CompareValidator, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" mappedTagType="MyWebApp.ExtendedCompareValidator, MyWebApp"/>
</tagMapping>
</pages>
答案 1 :(得分:1)
您不需要延长CompareValidator
来解决此问题。在两个控件上使用RequiredFieldValidator
以验证它们不为空。这种方法的优点是可以在客户端进行验证,从而避免往返服务器。