I am using CustomValidator with onservervalidation. the server side function is firing properly and returns false value but the Validator is not displaying the error message but moving to the next step.
Code:
<asp:CustomValidator OnServerValidate="Naminee_Validate"
ErrorMessage="You cannot set yourself as Nominee"
runat="server" Display="None">*</asp:CustomValidator>
<asp:ValidationSummary ID="ValidationSummary3" runat="server" DisplayMode="SingleParagraph"
HeaderText="Error in saving the data: " />
protected void Naminee_Validate(object sender, ServerValidateEventArgs e)
{
if (....)
{
e.IsValid = false;
}
else
{
e.IsValid = true;
}
}
}