Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 528383
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T08:58:51+00:00 2026-05-13T08:58:51+00:00

How do I restrict file types with the HTML input file type? I have

  • 0

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?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T08:58:51+00:00Added an answer on May 13, 2026 at 8:58 am

    Unfortunately, you can’t restrict the file extension like you can in a standard file browser dialog. You can, however, check the extension once the user selects a file.

    You can add this event handler.

    filebox.Attributes.Add("onchange", "fileSelectedChanged(this);");
    

    and this JavaScript function

    function fileSelectedChanged(obj) {
        var filePath = obj.value;
    
        var ext = filePath.substring(filePath.lastIndexOf('.') + 1).toLowerCase();
        if(ext != 'csv') {
            alert('Only files with the file extension CSV are allowed');
        } else {
            document.getElementById('form1').submit();
        }
    }
    

    You should also check it on the server, using:

    filebox.PostedFile.FileName
    

    and:

    filebox.PostedFile.ContentType
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have following XML: <Library> <Item> <Field Name=Name>smooth</Field> <Field Name=File Type>mid</Field> <Field Name=File Size>60026</Field>
I have a directory, d:/resources/xxxxx/file-name.xxx that stores the file types: .png, .xml, .pdf, which
I have a basic form consisting of input fields as well as a file
I have a php file that I am trying to send the output in
I need to upload only image file through <input type="file"> tag. Right now, it
i have this file upload control which uploads all kinds o f files. i
Here is my Web.config file <membership> <providers> <clear /> <add name=AspNetSqlMembershipProvider type=System.Web.Security.SqlMembershipProvider connectionStringName=ApplicationServices maxInvalidPasswordAttempts=5
Is it possible to restrict direct access to PHP file if I use jquery
How can I restrict TextBox to accept only capital letters, or for example digits,
I'm using the instructions in this github readme file (at the bottom) to make

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.