Whats the best way to check the size of a file during upload using asp.net and C#? I can upload large files by altering my web.config without any problems. My issues arises
If you are using System.Web.UI.WebControls.FileUpload control:
System.Web.UI.WebControls.FileUpload
MyFileUploadControl.PostedFile.ContentLength;
Returns the size of the posted file, in bytes.