I am using RegularExpressionValidator to validate FileUpload1 to upload the only PDF and it working well but when I upload a file with arabic name it not working
i need it work with arabic name
this the code
<asp:RegularExpressionValidator ID="RegularExpressionValidator1" ValidationExpression="([a-zA-Z0-9\s_\\.\-:()])+(.PDF|.pdf)$"
ControlToValidate="FileUpload1" runat="server" ForeColor="Red" ErrorMessage="Please select PDF file only"
ValidationGroup="upload">*</asp:RegularExpressionValidator>