日期:2014-05-17  浏览次数:20492 次

Ajax上传图片,如何获取到上传图片的大小?

if (context.Request.Files.Count > 0) 
{
   HttpPostedFile file = context.Request.Files[0]; 
   string msg = "";
   string error = "";
   string path = context.Request["imgfile"];
   string 获取到的文件大小(或者大于1M)//这里怎么写?
             
//以下略



------解决方案--------------------
file.ContentLength
------解决方案--------------------
file.ContentLength

参考:HttpPostedFile 属性