|
-
September 23rd, 2008, 04:27 AM
#1
larg file upload with progress bar in asp.net
i am working with large video upload . for this i use splits the video into blocks(10 MB) and upload it using offset value. more over i have to show the progress
but i couldn't show the progress while the upload in progress. once the upload is over ,then status message appears.what is solution for this?
-
September 23rd, 2008, 07:01 AM
#2
Re: larg file upload with progress bar in asp.net
To my knowledge, you can't do this directly with the file upload controls in ASP.NET, specifically because the information is in the same thread. This is due to the HTTP POST of your file being in the same thread handling the update of the progress bar. You'll need to split the operations in some fashion, either using AJAX, Flash, or something similar.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|