Filter File extension With FileUpload

后端 未结 5 2518
醉梦人生
醉梦人生 2021-02-19 22:20

I am writing an asp.net web app which involves the use of the FileUpload control.

Right now, this particular FileUpload control only expects .z

5条回答
  •  不思量自难忘°
    2021-02-19 22:40

    To select images in fileupload control..

    hope it will help you

    asp:RegularExpressionValidator ID="rexp" runat="server" ControlToValidate="fupProduct"
         ErrorMessage="Only .gif, .jpg, .png, .tiff and .jpeg"
         ValidationExpression="(.*\.([Gg][Ii][Ff])|.*\.([Jj][Pp][Gg])|.*\.([Bb][Mm][Pp])|.*\.([pP][nN][gG])|.*\.([tT][iI][iI][fF])$)">

提交回复
热议问题