Hi:
I meet a problem when using fileupload to read file.
How to complete the read, and make sure the file is read completely
byte[] bytes = new byte[1000000];
int read = fileuploadstream.PostedFile.InputStream.Read(bytes, 0, bytes.Length);
how to make sure it has complete the reading. Thanks a lot
Go to the complete details ...