Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can you recommend alternative FileUpload control for asp.net-mvc?

Currently using System.Web.UI.WebControls.FileUpload wrapped in our own control.

We have licenses for Telerik. I wanted to know if anyone had experience with that or could suggest a better one?

Some criteria to be measured by

  • validation
  • peformance
  • multiple files
  • localisation (browse is difficult)
  • security
like image 273
dove Avatar asked Oct 31 '08 14:10

dove


People also ask

What is FileUpload control in asp net?

ASP. NET's FileUpload is an input controller used to upload files to a server. It appears on the screen with a browse button and opens up a dialogue box to choose a file or multiple files to upload from the local storage to the server. This is a server-side control provided by ASP.NET.

What is importance of FileUpload control HasFile property?

The HasFile property gets a value indicating whether the FileUpload control contains a file to upload. Use this property to verify that a file to upload exists before performing operations on the file.

How do I select multiple files in ASP NET FileUpload?

ASP.NET FileUpload control provides AllowMultiple property to upload multiple files to the server. This property takes either true or false value. The <asp:FileUpload> tag is used to create a browse button that allows us to upload file.

How can upload file in ASP NET MVC?

Uploading a file in Asp.Net MVC application is very easy. The posted file is automatically available as a HttpPostedFileBase parameters in the action of the controller. For uploading a file on the server you required to have a file input control within html form having encoding type set to multipart/form-data.


1 Answers

Personally, if you have the Telerik controls I would give them a shot. I've found that they are very helpful, and the user experience is good. Their upload control is quite nice.

like image 72
Mitchel Sellers Avatar answered Sep 30 '22 05:09

Mitchel Sellers