Click here to Skip to main content
15,886,056 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi All,

I have added <input type="file"> in the mvc3 application and i want to validate it so that it should accept only jpg,png,bmp files.

Please help me out.

Thanks in advance,
Pavan
Posted

have a look at th following example :
HTML
$(function () {
    $('form').submit(function () {
        var selectedFile = $('#file').val();
        var matches = selectedFile.match(/\.(xlsx?)$/i);
        if (matches == null) {
            alert('please select an Excel file');
            return false;
        }
        return true;
    });
});


for more refer :
http://stackoverflow.com/questions/5830666/remote-file-extension-validation-in-asp-net-mvc3-with-c[^]
 
Share this answer
 
Hello Guy,

HTML
<input name="Datei" type="file" size="50" maxlength="100000" accept="text/*">


You need that accept Property to allow something ;)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900