关于图片尺寸的问题
我上传   图片文件   请问如何   获得   图片的   尺寸      长和宽   感谢大家
------解决方案--------------------1 
 如果已经传递到服务器上 很简单 
 构造个Image 就有 width 等   
 2如果要在未上传前 
 see: 
 http://www.aspxboy.com/private/showthread.asp?threadid=719
------解决方案--------------------if (File1.PostedFile.ContentType.ToUpper().IndexOf( "IMAGE ") >  -1)
        {
            System.Drawing.Image img = System.Drawing.Image.FromStream(File1.PostedFile.InputStream);
            Response.Write(img.Width.ToString()+ " <BR>  ");
            Response.Write(img.Height);
        }