HttpPostedFileBase를 바이트(Bytes[]) 로 변환
BinaryReader 클래스를 사용하여 쉽게 변환이 가능하다.
public static byte[] ConverToBytes(HttpPostedFileBase file) 
{ 
            //방법 1 
            var length = file.InputStream.Length; 
            byte[] arrayData = null; 
            using (var binaryReader = new BinaryReader(file.InputStream)) 
            { 
                arrayData = binaryReader.ReadBytes(file.ContentLength); 
            } 
            return arrayData ; 
}

