Hi all,
I solved the problem
using (Stream uploadedStream = file.OpenStream())
{
byte[] theFile = new byte[uploadedStream.Length];
uploadedStream.Read(theFile, 0, (int)uploadedStream.Length);
}
just a mising doc for MvcUploadFile
Best regards
Catwiesl