Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>The server-side technology is very relevant for what you are trying to do. Server interaction is necessary for such kind of things.</p> <p>I don't know of any ready made component, but this <a href="http://stephenwalther.com/blog/archive/2008/10/03/asp-net-mvc-application-building-family-video-website-5-multiple-file-upload-with-progress.aspx" rel="noreferrer">article</a> could be helpful.</p> <p>Based on your update it seems that you are looking for a client component bound to a specific server technology and feel confident that you can easily convert this to .NET. In my opinion this won't be easy. To implement the progress bar thing you need a file upload listener. In Java, I had luck doing something similar using <a href="http://commons.apache.org/fileupload/" rel="noreferrer">Apache Commons FileUpload</a> and by implementing the <a href="http://commons.apache.org/fileupload/apidocs/org/apache/commons/fileupload/ProgressListener.html" rel="noreferrer">ProgressListener</a> interface. Basically I have followed the instructions on this <a href="http://www.codeguru.com/java/article.php/c13913__1/" rel="noreferrer">article</a>. Besides the progress listener, I needed to implement a servlet that returned the current percentage of the upload and at the client side use a progress bar jQuery plug-in, which I regularly updated by Ajax calling the percentage servlet. These are the easy bits. As I've commented, you can easily implement them yourself in no time.</p> <p>The hard part is the progress listening and this is very much different, depending on the server technology. So I recommend that you start from there. Find out how you can listen to the progress of a file uploaded using ASP.Net MVC. The article linked above is a good starting point.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload