Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6970581
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T16:43:40+00:00 2026-05-27T16:43:40+00:00

I am planning on using, either the Uploadify or Plupload, image upload libraries in

  • 0

I am planning on using, either the Uploadify or Plupload, image upload libraries in my project. The reason I would like to use one of these libraries is to allow the user to be able to select multiple files at once and then upload them all at once as well.

My goal is to place one of these file upload controls on a form that also allows the user to enter other data into it in addition to selecting a bunch of images. The user should then be able to submit the form and have the data they entered and the images they selected, be uploaded and processed on the server.

The problem I am running into is that these file upload controls require the user to upload the selected files to the server before the actual aspx page gets submitted. In the end this creates confusion for the user. They first have to submit the images and then submit the form with the rest of the data.

My question is, is there a way to make Uplodify or Plupload send the selected files up to the server only when the user actually clicks the form’s submit button? I don’t want the user to first upload the files to a temp folder on the server and then submit the form separately.

This will require me to have to locate those uploaded files in the temp folder and associate them with the data submitted on the form at a later time.

The basic Asp.Net FileUpload control gives me part of what I am looking to do, by allowing me to submit the files at the same time as the rest of the form data, but it obviously does not allow the user to select multiple files at once.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T16:43:40+00:00Added an answer on May 27, 2026 at 4:43 pm

    Plupload is very flexible, in fact what people understand under Plupload when they mention it is usually just a UI or jQuery widget. But it’s not that – Plupload is pure JavaScript API, that one can use to build hist own customized implementation. What you say – upload files when submit button is clicked is also possible. Actually an example that comes with the Plupload bundle, shows just that (see: examples/jquery/jquery_ui_widget.html):

    // Client side form validation
    $('form').submit(function(e) {
        var uploader = $('#uploader').plupload('getUploader');
    
        // Files in queue upload them first
        if (uploader.files.length > 0) {
            // When all files are uploaded submit form
            uploader.bind('StateChanged', function() {
                if (uploader.files.length === (uploader.total.uploaded + uploader.total.failed)) {
                    $('form')[0].submit();
                }
            });
    
            uploader.start();
        } else
            alert('You must at least upload one file.');
    
        return false;
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I was using CodeRush quite while ago and now I'm planning to use it
I'm planning on caching some information using ehcache. Normally, I would follow the pattern:
Background: I'm planning on using the JW FLV Media Player for streaming some videos:
I'm planning on using Apache NMS for ActiveMQ messaging, and am wondering what serialization
I am building an application and I am planning on using OpenSSL for securing
Soon I'll be launching my new site and i was planning on using gmail
I am using C# 3.0 / .NET 3.5 and planning to build an eCommerce
I'm planning to design simple website using ASP.NET MVC new technology. Many concepts are
We are using WCF service on the client side we are planning to explicitly
We are using Asp.Net 2.0 and planning to move to TDD so that middle

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.