Click or drag to resize

Percentage 프로퍼티

현재 업로드 진행율을 반환합니다.

형식
syntax
objProgress.Percentage

objProgress

Required. Progress 오브젝트

데이터 형식

Long

설명

업로드 진행율은 아래와 같이 계산되어 집니다.

nothing
  TransferBytes
-----------------   x  100
   TotalBytes
예제
ASP
Set Progress = Server.CreateObject("TABSUpload4.Progress")

'폼 페이지에서 전달된 ProgressID를 지정합니다. 
Progress.ID = Request.QueryString("progressid")

Percentage = Progress.Percentage
TransferBytes = Progress.TransferBytes
TotalBytes = Progress.TotalBytes
See Also