Measuring Download Bandwidth
-
I have developed a subscription based web application using ASP.NET (C#). Applicaiton is used to give user accounts to different customers to download some files from website. I want to measure the bandwidth used by each customer account during downloading. I'm using SQL Server 2008 at the backend where the user account information as well as download history and total download size are maintained on it. Infact I want to calculate the bandwidth used by each customer during any download file process. Each customer is assigned certain amount of bandwidth. I want to calculate this during the session of a customer, not at the website level. Something exactly like "sharing-hub.com" website. Any comments and suggestions are welcomed.
-
I have developed a subscription based web application using ASP.NET (C#). Applicaiton is used to give user accounts to different customers to download some files from website. I want to measure the bandwidth used by each customer account during downloading. I'm using SQL Server 2008 at the backend where the user account information as well as download history and total download size are maintained on it. Infact I want to calculate the bandwidth used by each customer during any download file process. Each customer is assigned certain amount of bandwidth. I want to calculate this during the session of a customer, not at the website level. Something exactly like "sharing-hub.com" website. Any comments and suggestions are welcomed.
Bandwidth is downloaded amount of data divided by the time need to do so. You only need to additionally record download start and download end time.
-
Bandwidth is downloaded amount of data divided by the time need to do so. You only need to additionally record download start and download end time.
I need to retrieve the download size during downloading a file.
-
I have developed a subscription based web application using ASP.NET (C#). Applicaiton is used to give user accounts to different customers to download some files from website. I want to measure the bandwidth used by each customer account during downloading. I'm using SQL Server 2008 at the backend where the user account information as well as download history and total download size are maintained on it. Infact I want to calculate the bandwidth used by each customer during any download file process. Each customer is assigned certain amount of bandwidth. I want to calculate this during the session of a customer, not at the website level. Something exactly like "sharing-hub.com" website. Any comments and suggestions are welcomed.
Hi, You need to use handler to process file download request. When client request the file download, file handler will search the file and calculate it's size. You can store the file size downloaded against the user and restrict user from further downloading if allowed quota reached for the day or week etc.. File handler
-
Hi, You need to use handler to process file download request. When client request the file download, file handler will search the file and calculate it's size. You can store the file size downloaded against the user and restrict user from further downloading if allowed quota reached for the day or week etc.. File handler
Thanks Satalaj, Would you please tell me more about your solution any code snippet or samples I mean. BTW your link couldn't be open.