|
Rank: Newbie Groups: Member
Joined: 6/26/2007 Posts: 5
|
I'm uploading a file, and after I click upload, I see the progresss bar increase as expected. However, when it gets to the last byte, it just sits there for a maybe 15 seconds. Not sure whats going on. Any ideas?
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,193
|
Hi John,
Thanks for posting the issue at here. This is a problem that we are currently working on. Hopefully we will be able to get an update out today.
Thanks
|
|
Rank: Newbie Groups: Member
Joined: 6/26/2007 Posts: 5
|
Thanks for the quick replay. I'm also getting a message that process cannot access the file in the following code after an Uploaded event
protected void Uploader_FileUploaded(object sender, EventArgs e) { AJAXPostedFile[] postedFiles = Uploader.PostedFiles; foreach (AJAXPostedFile postedFile in postedFiles) { using (BinaryReader reader = new BinaryReader(File.Open(postedFile.TempFileName, FileMode.Open))) { byte[] image = reader.ReadBytes(postedFile.Length); reader.Close(); File.Delete(postedFile.TempFileName); //SaveImage(ImageFunctions.ImageToMultiPageG4TifByteArray(_image)); } } } }
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,193
|
Hi John,
We already have an internal build that addressed that issue. Please see your private messages for download location.
Thanks
|
|
Rank: Newbie Groups: Member
Joined: 6/1/2007 Posts: 6
|
I have the same problem sometimes. When this happens, I only have a 50/50 chance of the Posted File List being shown on the client.
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,193
|
The problem has already been fixed here and we are running some final test on it. Hopefully we can post the update today.
|
|