How do I restrict file types with the HTML input file type?
I have this
<input type="file" id="fileUpload" name="fileUpload" size="23" accept="Calendar/ics"/>
I am trying to restrict the type to only the iCalendar format type.
I also want to check it on the server side. How do I do this in ASP.NET MVC?