Попробуйте это:
<script type="text/javascript">
// <![CDATA[
$(document).ready(function() {
$('#fileInput').uploadify({
'uploader': 'uploadify/uploadify.swf',
'script': 'Upload.ashx',
'scriptData': { 'id': 1, 'foo': 'test'},
'cancelImg': 'uploadify/cancel.png',
'auto': true,
'multi': true,
'fileDesc': 'Image Files', //<-- This can be whatever you want
'fileExt': '*.jpg;*.png;*.gif;*.bmp;*.jpeg', //<-- Answer Here
'queueSizeLimit': 90,
'sizeLimit': 4000000,
'buttonText': 'Choose Images',
'folder': '/uploads',
'onAllComplete': function(event, queueID, fileObj, response, data) {
}
});
});
// ]]>
</script>
<input id="fileInput" name="fileInput" type="file" />