Fille Upload control and Progress bar

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • vijayp
    New Member
    • Dec 2007
    • 2

    Fille Upload control and Progress bar

    HI All,
    I am using File Upload control in Asp.Net 2005.
    But want Progress Bar to watch on uploaded file. Is anybody knows how to use File Upload control with Progress bar in Asp.net 2005

    thanks in advanced
  • debasisdas
    Recognized Expert Expert
    • Dec 2006
    • 8119

    #2
    You need to find out the file size and rate of transfer and pass these two to progressbar .

    Comment

    • vijayp
      New Member
      • Dec 2007
      • 2

      #3
      Originally posted by debasisdas
      You need to find out the file size and rate of transfer and pass these two to progressbar .
      Yes but how to do it?

      Comment

      • GregoryPankov
        New Member
        • May 2008
        • 6

        #4
        Hello!

        There is no simple way to display a progress information of upload process with using standart ASP.NET 2.0 FileUpload component. ASP.NET Runtime store all uploading files in temporarily location with temporarily name and these files are hard to find.

        So, you can write a HttpModule for parsing request with uploading files but it is not easy to be done.

        Or, you can use third party components:

        Comercial:
        EAUpload .NET by EasyAlgo Software
        ABCUpload .NET by WebSupergoo

        Free:
        AspnetUpload

        Comment

        Working...