How to restrict upload file type in asp.net?

1 replies
I have a code of uploading file in the asp.net using c#. I want to know how cna i restrict it for just uploading jpg files?

I am using c# with asp.net
#aspnet #file #restrict #type #upload
  • Profile picture of the author skillboyz
    You can check file type using

    FileUpload1.Postedfile.FileType

    you can use file type to compare with jpg and then write upload code

    FileUpload.PostedFile.SaveAs()
    {{ DiscussionBoard.errors[8280377].message }}

Trending Topics