Problem accessing file from different thread in Asp.net - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T12:13:39Zhttp://stackoverflow.com/feeds/question/120404http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/120404/problem-accessing-file-from-different-thread-in-asp-net0Problem accessing file from different thread in Asp.netYaakov Ellis2008-09-23T11:26:12Z2009-11-11T06:42:33Z
<p>I have a process in a website (Asp.net 3.5 using Linq-to-Sql for data access) that needs to work as follows:</p>
<ol>
<li>Upload file</li>
<li>Record and save info regarding file to database</li>
<li>Import data from file into database</li>
<li>Redirect to different page</li>
</ol>
<p>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.</p>
<p>I am handling the threading as follows:</p>
<pre><code>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
}
}
</code></pre>
<p>And in the codebehind:</p>
<pre><code>protected void butUpload(object sender, EventArgs e) {
// Save file, prepare for import
Import.ImportPendingFile();
Response.Redirect(NewLocation);
}
</code></pre>
<p>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! </p>
<p>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:</p>
<pre><code>if (File.Exists(fileName)) {
using (FileStream stream = new FileStream(fileName, FileMode.Open)) {
// use stream to open file
}
}
</code></pre>
http://stackoverflow.com/questions/120404/problem-accessing-file-from-different-thread-in-asp-net/120434#1204341Answer by leppie for Problem accessing file from different thread in Asp.netleppie2008-09-23T11:31:46Z2008-09-23T11:31:46Z<p>Try Response.Redirect(url, false) , else the 'Response' will be ended just after that call.</p>
http://stackoverflow.com/questions/120404/problem-accessing-file-from-different-thread-in-asp-net/1713466#17134660Answer by powerpoint business presentati for Problem accessing file from different thread in Asp.netpowerpoint business presentati2009-11-11T06:42:33Z2009-11-11T06:42:33Z<p>ASP.NET view state is a great feature and an essential tool for web development of today. It maintains the state of a page as it travels back and forth. There is no more need to worry about restoring values of page controls between postbacks. In this article you will get an in-depth perspective on view state. We will talk about ways of reducing unnecessary payload and protecting view state from prying eyes.</p>