File Uploading in ASP .NET

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

H

I was wondering... how can I get the status of a file upload? I mean how much has been uploaded and how much is left

I am using ASP .NET

Any idea will be highly appreciated coz I am desperately looking for light... as they say :

Have a Good Day
eff_kay
 
Since the server doesn't automatically know how big the file is, only the
client can figure this out. And that can only be determined by the user
looking at the status bar on the bottom of his web browser window. There is
no API for obtaining this reference unless it is exposed in the Internet
Explorer WebBrowser control.

Jon


eff_kay said:
Hi

I was wondering... how can I get the status of a file upload? I mean how
much has been uploaded and how much is left.
 
In addition, you may not even be able to execute any code while the file is
being uploaded.

I do not believe that ASP.NET is dispatched until the post has completed,
and therefore any server-side script would not be able to process upload
status information, even if it was possible.
 
But there are few vendors who are selling such kind of control which provides progress bar for uploading

Any idea how they have implemented this?
 
Back
Top