Click here to Skip to main content
15,889,595 members
Articles / Web Development / HTML

ASP.NET File Upload with Progress Bar

Rate me:
Please Sign up or sign in to vote.
4.90/5 (252 votes)
20 Jul 2012CPOL2 min read 4.9M   68.3K   442   357
File upload widget that will display real time file upload progressbar

Introduction 

File upload widget that will display real time file upload progress bar:

FileUploadWithProgrss/Messages.png

Background

This will allow user to upload, download and delete file with classic user interface and without reloading page.

Using the Code

The upload widget includes the following:

  • File Upload interface (Default.aspx)
    • IFRAME (which contains upload engine page UploadEngine.aspx)
    • Upload button (that will allow user to upload file on server)
    • Display statistics for uploading file (Filename, Status, Progress and Transferred Bytes)
    • Grid (that will display list of uploaded files)
    • Hidden field (it will monitor and refresh file list whenever file was successfully uploaded on server)
  • Upload Engine (UploadEngine.aspx)
    • File Upload control

Page Structure (Default.aspx)

FileUploadWithProgrss/PageStructure.png

Upload Engine structure (UploadEngine.aspx)

FileUploadWithProgrss/UploadEngineStructure_.png

Page execution flow

During page loading, it will automatically register click event for Upload button.

FileUploadWithProgrss/PageExecutionFlow_1.png
  1. Choose File to upload
  2. Clicking on Upload button (it will automatically register click event for Upload button)
    • The following function is checking basic validation on client site like
      • File Upload should not be empty
      • File name should be unique
    • Executing (UploadEngine) submit event using JavaScript
    • During execution of (UploadEngine) two processes are executing simultaneously
      • Page will maintain File Upload details in session with the help of UploadDetail class
      • Every 500 milliseconds, the PageMethod will call and display progress of current uploading file with Size and Percentage value
    • Display continuous progress using StartProgress function
  3. FileUploadWithProgrss/PageExecutionFlow_2.png

  4. Display real time progress

    FileUploadWithProgrss/PageExecutionFlow_3.png

  5. Update message based on result, result may from following:
    Success Information Warning Error

    FileUploadWithProgrss/PageExecutionFlow_4.png

  6. The two processes are executing simultaneously on server side are as follows:
    • Upload Engine

      FileUploadWithProgrss/ProcessesExecution_1_.png

    • Default

      FileUploadWithProgrss/ProcessesExecution_2.png

  7. During file upload processes, the following screen would be appear:

    FileUploadWithProgrss/Downloading.png

  8. Following functionality is also available in Grid:

    FileUploadWithProgrss/Delete_DownloadFile.png

  9. I provided classical look and feel (with CSS) and cross browser compatible script (with JavaScript).
  10. The upload widgets are supported by the following browser:

    FileUploadWithProgrss/Browser.jpg

    UPDATED - 2: 

    I have added three new files for saving file in database. 

    • App_Code  
      1. SaveFile.cs  (Logic for saving file database, Attention: modify only database connection)
      2. Result.cs (this will return status success of failed with description)
    • App_Data 
      1. Script.Sql (Database script for creating Table and Stored Procedure) 

    Modified only one file UploadEngine.aspx.cs

    Please add following code after

    C#
    if (this.fileUpload.PostedFile != null && this.fileUpload.PostedFile.ContentLength > 0
    C#
    //START : Saving File in Database
                   SaveFile saveFileInDB = new SaveFile();
                   saveFileInDB.FileName = this.fileUpload.PostedFile.FileName;
                   saveFileInDB.FileExtension = Path.GetExtension(this.fileUpload.PostedFile.FileName);
                   saveFileInDB.FileContent = this.fileUpload.FileBytes;
                   Result Result = saveFileInDB.SaveFileInDB();
                   if (Result.IsError == false)
                   {
                       //File Save in Database Successfully!
                   }
                   else
                   {
                       //Error in Saving File in Database!
                       //Error: Result.ErrorMessage
                       //InnerException: Result.InnerException
                       //StackTrace: Result.StackTrace
                   }
                   //END : Saving File in Database
    

Points of Interest 

Now I will try to support multiple files upload feature.  

History  

If you find some issues or bugs with it, just leave a comment or drop me an email. If you make any notes on this, let me know that too so I don't have to redo any of your hard work.

1.                      Initial Upload

2.  21-07-12       Add functionality to uploaded file in Database also

Please provide a "Vote", if this would be helpful.  

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead Infostretch Ahmedabad-Gujarat
India India
Aspiring for a challenging carrier wherein I can learn, grow, expand and share my existing knowledge in meaningful and coherent way.

sunaSaRa Imdadhusen


AWARDS:

  1. 2nd Best Mobile Article of January 2015
  2. 3rd Best Web Dev Article of May 2014
  3. 2nd Best Asp.Net article of MAY 2011
  4. 1st Best Asp.Net article of SEP 2010


Read More Articles...

Comments and Discussions

 
AnswerRe: Reg : Session Locks Pin
daveb7715-Jul-15 13:36
daveb7715-Jul-15 13:36 
QuestionUploadDetail Pin
eAuditor6-May-14 21:14
eAuditor6-May-14 21:14 
AnswerRe: UploadDetail Pin
Sunasara Imdadhusen6-May-14 21:20
professionalSunasara Imdadhusen6-May-14 21:20 
GeneralRe: UploadDetail Pin
eAuditor6-May-14 23:55
eAuditor6-May-14 23:55 
GeneralRe: UploadDetail Pin
Sunasara Imdadhusen7-May-14 0:35
professionalSunasara Imdadhusen7-May-14 0:35 
GeneralRe: UploadDetail Pin
eAuditor7-May-14 1:14
eAuditor7-May-14 1:14 
QuestionUploadEngine Getting server error and restarting Pin
bayvirus2-May-14 22:42
bayvirus2-May-14 22:42 
AnswerRe: UploadEngine Getting server error and restarting Pin
bayvirus2-May-14 22:47
bayvirus2-May-14 22:47 
' Application.

Access to the path 'C:\webspace\NWB30000\csagrimedya.com\beta\www\Uploads\test.jpeg' is denied.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.UnauthorizedAccessException: Access to the path 'C:\webspace\NWB30000\csagrimedya.com\beta\www\Uploads\test.jpeg' is denied.

ASP.NET is not authorized to access the requested resource. Consider granting access rights to the resource to the ASP.NET request identity. ASP.NET has a base process identity (typically {MACHINE}\ASPNET on IIS 5 or Network Service on IIS 6 and IIS 7, and the configured application pool identity on IIS 7.5) that is used if the application is not impersonating. If the application is impersonating via <identity impersonate="true">, the identity will be the anonymous user (typically IUSR_MACHINENAME) or the authenticated request user.

To grant ASP.NET access to a file, right-click the file in Explorer, choose "Properties" and select the Security tab. Click "Add" to add the appropriate user or group. Highlight the ASP.NET account, and check the boxes for the desired access.

Source Error:



Line 53:
Line 54: //Writing the byte to disk
Line 55: using (FileStream fs = new FileStream(Path.Combine(path, fileName), FileMode.Create))
Line 56: {
Line 57: //Aslong was we haven't written everything ...


Source File: c:\webspace\nwb30000\csagrimedya.com\beta\www\UploadEngine.aspx Line: 55

Stack Trace:



[UnauthorizedAccessException: Access to the path 'C:\webspace\NWB30000\csagrimedya.com\beta\www\Uploads\test.jpeg' is denied.]
System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath) +9727326
System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy, Boolean useLongPath) +1142
System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options, String msgPath, Boolean bFromProxy) +78
System.IO.FileStream..ctor(String path, FileMode mode) +71
ASP.uploadengine_aspx.Page_Load(Object sender, EventArgs args) in c:\webspace\nwb30000\csagrimedya.com\beta\www\UploadEngine.aspx:55
System.Web.Util.CalliHelper.EventArgFunctionCaller(IntPtr fp, Object o, Object t, EventArgs e) +14
System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) +35
System.Web.UI.Control.OnLoad(EventArgs e) +91
System.Web.UI.Control.LoadRecursive() +74
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +2207




Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.1022
Generalthanks Pin
Member 107263789-Apr-14 21:01
Member 107263789-Apr-14 21:01 
GeneralRe: thanks Pin
Sunasara Imdadhusen9-Apr-14 21:14
professionalSunasara Imdadhusen9-Apr-14 21:14 
GeneralVote 5 Pin
JoseGpe0611-Mar-14 8:59
JoseGpe0611-Mar-14 8:59 
GeneralRe: Vote 5 Pin
Sunasara Imdadhusen9-Apr-14 21:15
professionalSunasara Imdadhusen9-Apr-14 21:15 
QuestionThe Best Sample Pin
JoseGpe0611-Mar-14 8:57
JoseGpe0611-Mar-14 8:57 
AnswerRe: The Best Sample Pin
Sunasara Imdadhusen9-Apr-14 21:15
professionalSunasara Imdadhusen9-Apr-14 21:15 
General[My vote of 1] misleading article Pin
mario_finsoft6-Feb-14 3:13
mario_finsoft6-Feb-14 3:13 
GeneralRe: [My vote of 1] misleading article Pin
Sunasara Imdadhusen22-Apr-14 2:34
professionalSunasara Imdadhusen22-Apr-14 2:34 
QuestionLong Time 100% Pin
ahmed rashed30-Oct-13 22:32
ahmed rashed30-Oct-13 22:32 
AnswerRe: Long Time 100% Pin
Sunasara Imdadhusen22-Apr-14 2:35
professionalSunasara Imdadhusen22-Apr-14 2:35 
BugWrong file being attached Pin
larryo329-Oct-13 4:17
larryo329-Oct-13 4:17 
GeneralRe: Wrong file being attached Pin
larryo314-Nov-13 9:59
larryo314-Nov-13 9:59 
GeneralRe: Wrong file being attached Pin
Sunasara Imdadhusen22-Apr-14 2:37
professionalSunasara Imdadhusen22-Apr-14 2:37 
QuestionPLEASE READ THIS MASTER Pin
Zhero Yoshiko Shizuka30-Sep-13 1:19
Zhero Yoshiko Shizuka30-Sep-13 1:19 
AnswerRe: PLEASE READ THIS MASTER Pin
Sunasara Imdadhusen22-Apr-14 2:39
professionalSunasara Imdadhusen22-Apr-14 2:39 
QuestionHow does it work? Confused. Pin
Ilshat N. Aliev6-Sep-13 3:07
Ilshat N. Aliev6-Sep-13 3:07 
AnswerRe: How does it work? Confused. Pin
Ilshat N. Aliev6-Sep-13 3:13
Ilshat N. Aliev6-Sep-13 3:13 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.