<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="PushFileDownloadStatus.aspx.cs" Inherits="AVA.ResourcesPlatform.WebUI.Tools.PushFileDownloadStatus" %>
下载文件:<%= CreateInstance.PushFileDownLoadDao.GetDownloadConsole().ListTaskQueue.Count %>个 总速度为:<%= AVA.DownloadComponent.Methods.SpeedToString(CreateInstance.PushFileDownLoadDao.GetDownloadConsole().ListTaskQueue.AllSpeed) %> <% if (CreateInstance.PushFileDownLoadDao.GetDownloadConsole().MaxSpeed > 0) { %>
总体限速: <%= AVA.DownloadComponent.Methods.SpeedToString(CreateInstance.PushFileDownLoadDao.GetDownloadConsole().MaxSpeed) %> <% } %>
<% for (int i = 0; i <= CreateInstance.PushFileDownLoadDao.GetDownloadConsole().ListTaskQueue.Count - 1; i++) { var task = CreateInstance.PushFileDownLoadDao.GetDownloadConsole().ListTaskQueue[i]; %> <% } %>
文件 大小 已归档 速度 状态
<%= task.FileName %> <%= AVA.DownloadComponent.Methods.SizeToString(task.TotalSize) %> <%= AVA.DownloadComponent.Methods.SizeToString( task.DownSize) %> <%= AVA.DownloadComponent.Methods.SpeedToString(task.Speed) %> <%= task.GetState %>