i have file upload of asp.net control ,
I want to check file has a file or not true
i have file upload of asp.net control ,
I want to check file has a file or not true
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Sachin SinghPosted Jul 21, 2021, 8:46 AM
Save As: {0}", FileUpload1.PostedFile.FileName);
File type: {0}", FileUpload1.PostedFile.ContentType);
File length: {0}", FileUpload1.PostedFile.ContentLength);
File name: {0}", FileUpload1.PostedFile.FileName);
Error
");
{0}", ex.Message);
Vaibhav ChauhanPosted Jul 21, 2021, 7:22 AM