Hi everyone,
I like to make a progress bar for upload file.
I use javascript and iframe to create File element and submit button in the form so I can submit this form through javascript.
My form have a aspx action to process and save this file on the server.
I have a message element in the file upload interface for show upload details to users.
For get this information (upload details) such as bytes uploaded and totalsize I thinks need to the httphandler or httpmodule.
Please advise me to create this progress bar.
In the upload.aspx file I get the file by request.files(0) as a HttpPostedFile and in a while cycle I write bytes on the server.
This is my cods to save file on the server.
If Request.Files.Count > 0 Then
Dim bytes As Integer = 0
Dim byffersize As Integer = 1
Dim byffer(byffersize) As Byte
Dim uploaded As Doubl ...
Go to the complete details ...