Filter File extension With FileUpload

2019-04-05 17:48发布

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

Right now, this particular FileUpload control only expects .zip or .gz file types. If an incorrect type of file is uploaded, An error message is displayed to the user. This functionality is already implemented.

What I want to do is to filter the visible file types that the user sees when he clicks on "browse".

You may have seen a file opening dialog resembling the following.
enter image description here

I've circled the area that represents the file extension filter.

This is a feature so common that I expected it to be built in to the current FileUpload Control but after some searching online, I've found some posts that say it can't be done.

Those posts were from 2009, more than 2 years ago.

Now, My question is: does the current Asp.Net 4.0 support this feature?, and if it doesn't, do you know of any simple solution to get the functionality that I want.

I would like to again point out that I am able to validate whether or not the user chooses a supported file type. All I'm looking for is a cosmetic change, that will filter out unneeded file types in the open file dialog.

5条回答
趁早两清
2楼-- · 2019-04-05 18:00

I believe it is not possible.Filter by file type in browser is not control by asp.net.It is a browser functionality.

This question already asked in stackoverflow.Please click filter the file type with the file upload control

查看更多
【Aperson】
3楼-- · 2019-04-05 18:06
Luminary・发光体
4楼-- · 2019-04-05 18:09

you can create validate file extension from the ASP.NET FileUpload Control

I believe you could go for this solution

Validate File Extension for ASP.NET FileUpload Control

查看更多
做个烂人
5楼-- · 2019-04-05 18:10

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])$)"></asp:RegularExpressionValidator
查看更多
做个烂人
6楼-- · 2019-04-05 18:17

You can try the below code.

<asp:FileUpload ID="UploadFile" accept="image/*" multiple="false" runat="server" BorderStyle="None" />

It works with modern browsers.

Do not forget to validate the extensions using code behind procedures.

查看更多
登录 后发表回答