Validate FileUpload Accept Only xlsx File

    

    $(function () {

            $('input:file').change(function () {
                var ext = this.value.split('.').pop();
                var FileExt = ['xlsx']
                if ($.inArray($(this).val().split('.').pop().toLowerCase(), FileExt) == -1) {

                    var xl = "Please Select xlsx Format Files"
                    alert(xl);

                    this.$find('input:file').dispose();
                    return false;
                }

            });


        });

Comments

Popular posts from this blog

Unable to perform operation on the item is locked in workspace

Maximum Stored Procedure Function Trigger or View Nesting Level Exceeded (limit 32) in SQL Server

Insecure cookie setting: missing Secure flag