Link to home
Start Free TrialLog in
Avatar of COANetwork
COANetwork

asked on

Show progress bar while uploading file from file upload control in asp.net 2.0

My task is while uploading files from file upload control i have to show progress bar corresponding how much it is uploaded.
ASKER CERTIFIED SOLUTION
Avatar of gocemi
gocemi
Flag of North Macedonia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Avatar of Dirk Haest
Dirk Haest
Flag of Belgium image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Bare in mind that using the FileUpload control in ASP.net 2.0 will not solve your isue as by default this file will be first sent to the IIS ( web server) and than framework will be informed about it and wil "Download" the file.
Practically as file will be sent in the form framework will be notified when file is on the web server so counting the bytes sent is useless( try it on a remote server and you'll see)

If you get some upload control ( download some trial version) you'll see that they are using HTTP handlers....

However, if you do not like to experiment, than that Flash upload control will do your job