欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

asp下實(shí)現(xiàn)格式化文件大小以MB顯示的函數(shù)

 更新時(shí)間:2007年08月08日 12:02:57   作者:  
<%
'******************************
'函數(shù):FormatFileSize(l1)
'參數(shù):l1,字節(jié)數(shù)
'作者:阿里西西
'日期:2007/7/12
'描述:格式化文件大小樣式
'示例:<%=FormatFileSize(l1)%>
'******************************
function FormatFileSize(l1)
 dim l2,l3
 l3=formatnumber(l1,0,true)
 if l1>1048576 then
 l2="("&formatnumber(l1/1048576,0,true)&" MB) "&l3
 else
  if l1>1024 then
   l2="("&formatnumber(l1/1024,0,true)&" KB) "&l3
  else
   l2=formatnumber(l1,0,true)
  end if
 end if
 llI=l2
end function
%>

相關(guān)文章

最新評(píng)論