Upload speed

  • Thread starter Thread starter Bruno Piovan
  • Start date Start date
B

Bruno Piovan

Hello,
does anyone know how can I measure the upload speed with asp.net??

I would like to have button on a form and when the user clicks this button,
it will show what is the upload speed.

Any ideas?

Thanks!
 
Well Bruno i'm not sure..
But if you can go to Web.Config and then enable tracing..
Maybe you can measure it there..
GDLUCK
PAtrick
 
What is wrong with using progress bar ? You can collect sample data in that
control (progress bar) and be able to profile the speed. Your system
capacity and bandwidth availability also play important role.

John
 
I want to have a "button" on the form called "Start", and if use clicks this
button, the upload speed is shown in a next page...

any examples of progressbar or any example??

thanks
 
It's much easier to mesure the download speed. Just stream random bytes to
the browser and measure how long it takes. You could do something similar
for upload but you'll have first to download a fair amount of data.

That said it's likely to vary. AFAIK most sites are displaying an estimate
such "4.5 mn with a <speed> modem"...

Patrice
 
Back
Top