AleÆ’ux
New Member
I have a script like this :<BR> <BR> Dim ObjTest(row) as Image<BR> For i = 1 to Row<BR> ObjTest(i) = New Image()<BR> ObjTest(i).ImageUrl = i & ".jpg"<BR> ObjTest(i).ID = i<BR> ObjTest(i).Width = Unit.Pixel(50)<BR> ObjTest(i).Height = Unit.Pixel(100)<BR> Next i<BR> <BR>The problem is I want to know the size (in Byte or KB) of each ObjTest, how can i get that value, please help. Thank You.