开发者

Inserting to the database while uploading a file

开发者 https://www.devze.com 2022-12-11 09:53 出处:网络
I have a code in my asp.net page where I am inserting some data in the database while uploading a file to the server. The problem is, it seems that the application is waiting for the file to be upload

I have a code in my asp.net page where I am inserting some data in the database while uploading a file to the server. The problem is, it seems that the application is waiting for the file to be uploaded before it will insert to the database. Below is a code similar to mine.

public partial class _Default : System.Web.UI.Page
{
    protected HtmlInputFile XLSFileInput;

    ...

    protected void ImportButton_Click(objec开发者_高级运维t sender, EventArgs e)
    {
        InsertToDatabase(); //method to insert to database
        XLSFileInput.PostedFile.SaveAs(filePath + fileName);   
    }

    ...
}

The problem here is that it seems that the InsertToDatabase() method is executing only after the file is uploaded to the server. Any help is appreciated.


This has NOTHING to do with the IIS (webserver) threading, it's more of a HTTP "problem".

The file is selected on the client and then all response data (including the file) is posted to the server before any server code is ran.

So the file is uploaded but not saved before the InsertToDatabase(); is executed.

This behaviour can only be worked around doing several posts (eg. with ajax) and is probably not a god solution for you.

Tell us more about what you are trying to accomplish and we might come up with some better suggestions :).


I would not recommend trying to manually control threading in ASP.NET, that is a job best left purely to IIS.

IMO for ASP.NET the better way to handle this is either invoke these requests through either multiple AJAX operations from the browser or to setup a WCF service that supports one way operations so when you call "InsertToDatabase" it executes a fire and forget operation to the WCF service sitting ontop your database that executes immediately and then continues onto the next line of code. Then IIS is running the code that the service method calls in it's own thread.

IMO using WCF is one of the most appropriate ways of handling threading in ASP.NET. Since you can easily set any service method to be synchronous or asynchronous.

Edit:

Introduction to Building Windows Communication Foundation Services

What You Need To Know About One-Way Calls, Callbacks, And Events


The file upload is a part of the HTML form post. Since the upload is a part of the form post process, it's always going to happen before any of your server-side code executes. The PostedFile.SaveAs() call doesn't cause the upload to happen, it just saves what was already uploaded as part of the request.

If you absolutely need the database insert to happen before the upload begins, you could do as @Chris Marisic suggests and run the insert as an AJAX call prior to submitting the form.


That's generally how single threaded applications work.

From your code I am guessing your using ASP.NET Web Forms.

You would have to consider sending the InsertToDatabase() operation off to free up the program to do your file upload. Perhaps depending upon your version consider UpdatePanels as a quick and dirty way to achieve this?

You suggest these operations are separate, provide more details to help figure out what each task does and if JavaScript is possible.

But your code sample indicates that InsertToDatabase() should be going before the file save.

If you are unsure of AJAX/JavaScript you could use a Thread pool to do your InsertToDatabase() method. However it all depends on what that method does. Please provide more code/details. I personally use this for a database insert which happens in the background (A logging Action Filter in ASP.NET MVC so other users may disagree on the validity of this usage. However it might save you learning another language.

ThreadPool.QueueUserWorkItem(delegate
 {
   // Code here
 }
);


You could start another thread for the database insert. For Example:

ThreadStart job = new ThreadStart(InsertToDatabase);
Thread thread = new Thread(job);
thread.Start();
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号