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 47061
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T16:03:48+00:00 2026-05-10T16:03:48+00:00

I have a process in a website (Asp.net 3.5 using Linq-to-Sql for data access)

  • 0

I have a process in a website (Asp.net 3.5 using Linq-to-Sql for data access) that needs to work as follows:

  1. Upload file
  2. Record and save info regarding file to database
  3. Import data from file into database
  4. Redirect to different page

When run sequentially like this, everything works fine. However, since the files being imported can be quite large, I would like step 3 to run on a different thread from the UI thread. The user should get to step 4 while step 3 is still in progress, and the screen on step 4 will periodically update to let the user know when the import is complete.

I am handling the threading as follows:

public class Import {    public static void ImportPendingFile() {     Import i = new Import();     Thread newThread = new Thread(new ThreadStart(i.ImportFile));     newThread.Start();   }    public void ImportFile() {     // 1. Query DB to identify pending file     // 2. Open up and parse pending file     // 3. Import all data from file into DB     // 4. Update db to reflect that import completed successfully   } } 

And in the codebehind:

protected void butUpload(object sender, EventArgs e) {   // Save file, prepare for import   Import.ImportPendingFile();   Response.Redirect(NewLocation); } 

When doing this, I am able to confirm via debugger that the new thread is starting up properly. However, whenever I do this, the thread aborts when trying to access the file (step 2 in the code behind). This works fine when run in the main thread, so something about the multi-threaded situation is preventing this. I had thought that since the file is saved to disk (which it is) that there shouldn’t be any problem with opening it up in a different thread. Any ideas where I have gone wrong and how I can fix it? Thanks!

Note: I am using a third-party assembly to open the file. Using reflector, I have found the following code related to how it opens up the file:

if (File.Exists(fileName)) {   using (FileStream stream = new FileStream(fileName, FileMode.Open)) {     // use stream to open file   } } 
  • 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. 2026-05-10T16:03:49+00:00Added an answer on May 10, 2026 at 4:03 pm

    Try Response.Redirect(url, false) , else the ‘Response’ will be ended just after that call.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 94k
  • Answers 94k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Use ViewData instead of TempData if you are not redirecting.… May 11, 2026 at 6:55 pm
  • Editorial Team
    Editorial Team added an answer I’m afraid I don’t have IE 8 here to test… May 11, 2026 at 6:55 pm
  • Editorial Team
    Editorial Team added an answer You're assuming that when you send, all the data ends… May 11, 2026 at 6:55 pm

Related Questions

My organization is getting ready to implement a new system, which is a asp.net
Not sure what's going on here. I have a DateTime object, and when I
Scenario: Take a server running .NET 3.0 and an ASP.NET Web site running in
I am preparing for the development of an enterprise-style application for a very small

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.