Simon Dugré
Simon Dugré

Reputation: 18916

Asp.net fileupload transfer rate

Is there any way to easly know Transferrate between server/client during un filupload upload? Because uploading a file of 4,13Mb take about 5 or 6 minutes.... Is there anyway we can track it, by writing it in flatfile, email, response.write anything!! We're stuck.

Thanks to help us :(!

Upvotes: 0

Views: 420

Answers (3)

LJW
LJW

Reputation: 2388

Use a flash upload tool like SWFUpload, by which you can detect the upload speed, and then send the total time/speed to the server once the file is done.

Upvotes: 0

Rubens Farias
Rubens Farias

Reputation: 57956

Not easily.

HTTP works this way: you send ALL data and, after that, server begins to process your request.

But you can write some client code (flash, applet, silverlight) which break a file in pieces and send them, one at time, to server. This way you can compute your transfer rate.

Upvotes: 1

Bryan
Bryan

Reputation: 8778

Not if you're using the built-in asp:FileUpload control. Some third party AJAX-based upload controls probably do this, but I don't know of any offhand.

Upvotes: 1

Related Questions