I have a File Upload control "AttachmentSelecter". Two custome validator "AttachmentValidator1" & "AttachmentValidator2" are assigned to this control. However, the validators are not firing.
The Markup code is:
<tr >
<td style="text-align: right">
<asp:CustomValidator ID="AttachmentValidator1" runat="server"
ErrorMessage="??? ????? ?????? ???? ??? ???????? ??? ????"
ControlToValidate="AttachmentsSelecter" CssClass="style3">*</asp:CustomValidator>
</td>
<td>
<asp:CustomValidator ID="AttachmentValidater2" runat="server"
ErrorMessage="?? ??? ??????? ?? ??? ???? "
ControlToValidate="Attach ...
Go to the complete details ...